#container {
    min-width: 200px;
    max-width: 800px;
}

#file-list {
    min-width: 200px;
    padding-left: 10px;
    padding-top: 12px;
    white-space: nowrap;
    min-height: 50px;
    margin-bottom: 25px;
}

input[type=text],
button,
#file-list {
    /* flex-grow: 1; */
    font-size: 12pt;
    padding: 4px;
    color: #e9e9e9;
}

#download-button[disabled] {
    cursor: wait;
}

#file-list {
    min-height: 25px;
}

#file-list li {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    /* position: relative; */
    font-size: 11pt;
}

#file-list .filename-container {
    display: flex;
    align-items: center;
    background: #111;
    margin: 0.25em 0;
    border-radius: 5px;
    height: 35px;
    padding-left: 5px;
    overflow: hidden;
}

#file-list .handle {
    content: '☰';
    color: #fff;
    font-weight: bold;
    padding: 0 5px;
    font-size: 1.5em;
}

#file-list .filename {
    text-overflow: ellipsis;
    overflow: hidden;
    flex: 1;
}


#file-list .filecount {
    background-color: #048f0b;
    font-weight: bold;
    font-size: 80%;
    font-family: sans-serif;
    padding: 2px 5px;
    border-radius: 10%;
    height: .8em;
    line-height: .8em;
    margin-right: 15px;
}

#file-list .file-delete {
    background-color: #880000;
    color: white;
    min-width: 50px;
    height: 100%;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    font-size: 1.65em;
}

select {
    vertical-align: text-bottom;
}

label {
    margin-top: 10px;
    display: inline-block;
    vertical-align: middle;
}

.form-label {
    margin-right: 8px;
}

input[type=text] {
    height: 21px;
}

input[type=text],
button {
    box-sizing: content-box;
    text-align: center;
    background-color: #353535;
}

input[type=text]:hover,
button:hover {
    background-color: #262626;
}

input[type=text][disabled],
button[disabled]{
    opacity: .5;
    background-color: transparent;
}

button:not([disabled]) {
    cursor: pointer;
}

progress {
    display: block;
    width: 100%;
    height: 5px;
}

.show {
    visibility: visible;
}

.hide {
    visibility: hidden;
}

@media (max-width: 680px) {
    label {
        flex-direction: column;
    }

    .form-label {
        min-width: 190px;
        margin-bottom: 8px;
    }

    ol {
        padding-left: 0;
    }
}

body {
    margin-top: 10px;
    background-image: linear-gradient(90deg, #100231, #210464);
    font-family: sans-serif;
    color: #eee;
}

#container {
    margin: 0 auto;
    background: #222;
    padding: 10px 40px;
    border-radius: 5px;
    box-shadow: 0px 0px 16px black
}

h1 {
    font-size: 2em;
    color: #210464;
    margin-bottom: 3px;
    margin-top: 20px;
    font-weight: normal;
}

h1 a {
    text-decoration: none;
    font-weight: bold;
}

a {
    color: #fff;
}

.description {
    font-size: 1.2em;
    margin-bottom: 30px;
    margin-top: 10px;
}

.download {
    padding-top: 20px;
    float: right;
}

pre {
    background: white;
    color: black;
    padding: 15px;
    border-radius: 3px;
    box-shadow: 0px 0px 10px #ccc;
    white-space: pre-wrap;
}

hr {
    border: 0;
    border-bottom: 1px solid #aaa;
}

ul {
    margin: 5px 0;
}

code {
    font-size: 16px;
    line-height: 1.5em;
}


#file-drop-area {
    border: 2px dashed #ccc;
    cursor: pointer;
    padding: 10%;
}

#file-drop-area.drag-over {
    background-color: #111;
}

.caveat > p {
    text-align: center;
}

.caveat2 > p {
    color: #888;
    font-size: 80%;
    text-align: center;
}

.drop-target {
    text-align: center;
}