#drop-area {
    border: 2px dashed #000000;
    border-radius: 20px;
    height: 15rem;
    text-align: center;
    font-size: 20px;
    color: #000000;
    margin: 50px auto;
    overflow: auto;
    position: relative;
    padding-top: 3rem;
}

#drop-area.highlight {
    border-color: rgb(0, 0, 0);
}

#drop-area p {
    position: absolute;
    bottom: 1rem;
    left: 4rem;
}

#container {
    display: flex;
    justify-content: flex-start; /* Zorgt ervoor dat de divs aan de linkerkant van de container staan */
    align-items: center; /* Centreert de inhoud verticaal */
    margin-left: 10rem;
    margin-top: 5rem;
}

#uploadDiv {
    background-color: #ffffff;
    width: 30rem;
    border-radius: 15px;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 2rem;
    height: 52rem;
}

#logo {
    height: 3rem;
    margin-right: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

#navbar-logo {
    height: 35px;
}

#uploadTekst {
    text-align: center;
}

#downLink {
    margin-top: 1rem;
}

#kopieer {
    margin-top: 1rem;
    margin-left: 1rem;
}

#lblDownload {
    font-weight: bold;
}

#downTekst {
    font-size: smaller;
}

#downloadLink {
    min-height: 5rem;
    border: 1px solid gray;
    border-radius: 15px;
}

.custom-dropdown {
    background-color: rgb(145, 203, 215);
    border: 1px solid black;
    padding: 0;
    padding: 10px;
}

.custom-dropdown .dropdown-item {
    background-color: transparent;
    border: none;
}

.custom-dropdown .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.bg-light{
    background-color:rgb(145, 203, 215) !important;
}

#displayFiles {
    display: flex;
    flex-direction: column;
    width: 30rem; /* Pas deze waarde aan naar wens */
    background-color: #ffffff;
    height: 52rem;
    margin-left: 10rem;
    border-radius: 20px;
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

#displayFiles h2 {
    margin: 0; /* Verwijdert eventuele marges rond de h2 */
}

#btnLogout, #uploadButton{
    padding: 10px 30px; /* Maakt de knop groter */
    font-size: 16px; /* Maakt de tekst groter */
    background-color: #DE795F; /* Verander de kleur naar wens */
    color: #fff; /* Tekstkleur */
    border: 1px solid black; /* Verwijdert de standaard rand */
    border-radius: 5px; /* Maakt de hoeken afgerond */
    cursor: pointer; /* Verandert de cursor naar een pointer */
    margin-top: 5px; /* Voegt een kleine marge boven de knop toe voor wat ruimte */
}

#error {
    color: red;
    font-size: larger;
    text-align: center;
}

#fileElem {
    display: none;
}

#fileList {
    text-align: left;
    max-height: 500px;
}

.total-size {
    margin-top: 2rem;
    font-size: larger;
}

#headerIndex {
    text-align: center;
}

#button {
    text-align: center;
    margin-top: 1rem;
}

.loginForm {
    margin: 0 auto;
    width: 30rem;
    height: 45rem;
    border: 1px solid black;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 7%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
}

#logintekst {
    font-size: larger;
    text-align: center;
}

#loginAccount {
    text-align: center;
    margin-top: 8rem;
}

.loginForm h1 {
    text-align: center;
}

#login_h1 {
    text-align: center;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 70%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.form-control {
    padding-right: 30px;
}

#days {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#days label {
    flex: 1;
}

#days input {
    flex: 0;
    margin-left: auto;
}

#days i {
    margin-left: 10px;
}

#password {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#password label {
    flex: 1;
}

#password input {
    flex: 0;
    margin-left: auto;
}

#password i {
    margin-left: 10px;
}

#lblDays {
    font-weight: bold;
}

#lblPassword {
    font-weight: bold;
}

#daysTekst {
    font-size: smaller;
}

#passwordTekst {
    font-size: smaller;
}

#passwordInput {
    width: 130px;
}

#downloadLink {
    margin-top: 1rem;
    padding: 1rem;
}

#upload {
    text-align: center;
}

#newUpload {
    text-align: center;
    margin-top: 1rem;
}

#password {
    margin-top: 10px;
}

.file-item {
    position: relative;
    padding-left: 20px;
    margin-top: 1rem;
}

.file-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px; /* grootte van de cirkel */
    height: 10px; /* grootte van de cirkel */
    background-color: #DE795F; /* kleur van de cirkel */
    border-radius: 50%; /* maakt het een cirkel */
}

.bg {
    background: url(../img/background.jpg) no-repeat center center fixed; 
    background-size: cover;
}

#afterDownload {
    color: #DE795F;
    text-align: center;
    margin-top: 2rem;
}

#loading-overlay {
    position: fixed;
    top: 25%;
    left: 37%;
    width: 25%;
    height: 50%;
    border-radius: 20%;
    background: rgba(145, 203, 215, 0.5); /* Semi-transparante achtergrond */
    display: flex;
    flex-direction: column; /* Zorgt ervoor dat de tekst boven de cirkel staat */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Zorg ervoor dat de overlay boven andere elementen ligt */
}

.spinner {
    border: 16px solid #000000;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin-top: -100px;
}

.logfile {
    width: 60rem;
    height: 40rem;
    overflow: auto;
}

.beheerForm {
    width: 80rem;
    height: 40rem;
    overflow: auto;
}

.filesForm {
    width: 40rem;
    height: 40rem;
    overflow: auto;
}

.searchLog {
    width: 60rem;
    height: 40rem;
    overflow: auto;
}

.searchLog ul {
    list-style-type: decimal;
}

.addUser-content {
    display: flex;
}

.zipFiles {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    border-radius: 10px;
    background-color: #DE795F;
}

.cards {
    display: flex;
    margin: 2rem;
}

.card {
    margin: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card img {
    max-height: 150px;
    object-fit: cover;
}

.card1 {
    background-color: #003d4c;
    color: white;
}

.card2 {
    background-color: black;
    color: white;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.elvy-card {
    flex: 1 1 25%;
    transition: transform 0.5s ease;
}

.elvy-card:hover {
    transform: translateY(-0.5rem);
}

.elvy-item {
    display: flex;
    margin-top: 1rem;
    background-color: #003d4c;
    color: white;
    font-weight: bold;
    border-radius: 1rem;
    height: 5rem;
    justify-content: center;
    align-items: center;
}

.elvy-item a {
    color: white;
}

.elvy-item:hover {
    background-color: #91cbd7;
    cursor: pointer;
    color: black;
    font-weight: bold;
    border: 3px solid #003d4c;
}

.elvy-item:hover a {
    color: black;
    text-decoration: none;
}

.highlight {
    background-color: blue;
    color: white;
}

#content {
    margin-top: 1rem;
}

.elvy-instellingen-ul {
    display: inline-block; /* Dit centreert de ul */
    text-align: left; /* Dit zorgt ervoor dat de tekst links uitgelijnd blijft */
    list-style-position: inside; /* Dit zorgt ervoor dat de bolletjes niet inspringen */
    padding-left: -10rem;
}

.elvy-instellingen-li {
    margin-left: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-overlay h1 {
    color: rgb(0, 0, 0);
    margin-bottom: 200px; /* Voeg wat ruimte toe tussen de tekst en de cirkel */
}

@media (max-width: 850px) {
    #uploadDiv {
        max-width: 60%;
        max-height: 50rem;
        margin-left: 3rem;
        margin-left: 1rem;
        padding: 1rem;
    }
    #drop-area {
        height: 12.5rem; 
    }
    #displayFiles {
        max-width: 60%;
        max-height: 50rem;
        padding: 1rem;
        margin-left: 1rem;
        margin-top: 1rem;
    }
    #container {
        margin-top: 1rem;
        margin-left: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        max-width: 90%;
        flex-direction: column;
    }
}

@media (max-width: 1200px) {
    #uploadDiv {
        max-width: 100%;
        max-height: 50rem;
    }
    #drop-area {
        height: 12.5rem; 
    }
    #displayFiles {
        max-width: 100%;
        max-height: 50rem;
        padding: 1rem;
    }
    #container {
        margin-top: 1rem;
        margin-left: 1rem;
    }
}

@media (max-width: 1920px) and (max-height: 1080px) {
    #uploadDiv {
        max-width: 150%;
        max-height: 50rem;
    }
    #drop-area {
        height: 12.5rem; 
    }
    #displayFiles {
        max-width: 150%;
        max-height: 50rem;
        padding: 1rem;
    }
    #container {
        margin-top: 2rem;
    }
}