body {
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: #666666;
}

.header {
    width: calc(100% - 10px);
    height: 80px;
    display: flex;
    flex-direction: row-reverse;
    padding-right: 10px;
    align-items: center;
}

.footer {
    width: calc(100% - 10px);
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 10px;
    background-color: #dddddd;
}

.header > *, .footer > * {
    padding: 10px;
}

.main {
    width: calc(100% - 40px);
    height: calc(100vh - 170px);
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    margin-bottom: 50px;
}

#dropped-files-outer {
    background-color: #dddddd;
    border-style: solid;
    border-radius: 10px;
    border-width: 2px;
    border-color: #999999;
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dropped-files {
    background-color: #dddddd;
    border-style: none;
    border-radius: 10px;
    border-width: 2px;
    border-color: #999999;
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

#dropped-files td {
    border-style: solid;
    border-width: 2px;
    border-color: #999999;
    border-collapse: collapse;
    padding: 5px;
    height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: nowrap;
}

#dropped-files td:first-child {
    border-left: none;
}

#dropped-files td:last-child {
    border-right: none;
}

#dropped-files tr:first-child td {
    border-top: none;
}

#dropped-files tr:last-child td {
    border-bottom: none;
}

.dropped-file-percent {
    text-align: center;
    width: 50px !important;
    max-width: 50px;
    min-width: 50px;
    white-space: initial !important;
    word-wrap: initial !important;
    overflow: initial !important;
}
