body {
    background-color: #002d47;
    font-family: Helvetica;
    text-align: center;
    color: white;
}

.content {
    border-radius: 20px;
    background-color: #eee;
    width: 90%;
    padding: 10px;
    text-align: center;
    margin: auto;
    font-size: 1.4rem;
    font-weight: bold;
    color: black;
}

.uploader {
    margin: auto;
    text-align: center;
    background-color: #fff;
    padding: 10px;
    width: 90%;
    border-radius: 20px;
    min-height: 10%;
    box-sizing: border-box;
    display: block;
    position: relative;
}

.container {
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 15px 15px 50px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-align: left;
    background-color: #b1e1fc;
    border-radius: 15px;
    width: 100%;
    box-sizing: border-box;
    font-family: Arial;
    font-weight: bold;
}

.container:hover {
    background-color: #ddddff;
    border-radius: 25px;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 9px;
    left: 10px;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.container:hover input ~ .checkmark {
    background-color: #ccccff;
}

.container input:checked ~ .checkmark {
    background-color: #2196f3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: black;
}

.radiocontainer {
    margin: auto;
    width: 95%;
    max-width: 400px;
    padding-bottom: 10px;
    border-radius: 25px;
}

/*.custom-file-upload {
    border: 2px solid #0000ff;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 20pt;
    font-size: 1.6rem;
    border-radius: 10px;
}*/

/* Hide browser default  */
.hidden-file-upload {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.chooser-file-upload {
    display: inline-block;
    padding: 12px 24px;
    cursor: pointer;
    background-color: #2196f3;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition:
        background-color 0.3s,
        transform 0.1s;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    text-align: center;
}

#status {
    display: none;
    font-size: 1.2rem;
    background-color: #eeeeee;
    border-radius: 25px;
    padding: 15px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
}

#loadedtotal {
    color: #888;
    font-size: 0.8rem;
}

#progressbar {
    margin: auto;
    display: none;
}

#radiocontainer {
    display: inherit;
}

#formcontainer {
    max-width: 800px;
    margin: auto;
    display: inherit;
    padding-bottom: 20px;
}

#debugwindow {
    text-align: left;
    font-size: 0.7rem;
    margin: auto;
    width: 85%;
}

input[type="text"] {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    margin-top: 10px;
    box-sizing: border-box;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}
