body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    transition: background-color 0.3s, color 0.3s;
}

.light-mode {
    background-color: #f0f8ff;
    color: #333;
}

.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

.login-container {
    background-color: rgb(223, 231, 238); /* Nieuwe achtergrondkleur */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.dark-mode .login-container {
    background-color: #1e1e1e; /* Aangepaste achtergrondkleur voor dark mode */
}

.login-container input {
    width: 90%;
    padding: 10px;
    margin: 10px ;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: inherit;
    color: inherit;
}

.login-container select {
    width: 90%;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: inherit;
    color: inherit;
    font-size: 16px; /* Zorgt ervoor dat de tekstgrootte overeenkomt */
    appearance: none; /* Verwijdert de standaard browserstijl van de select */
    -webkit-appearance: none; /* Voor Safari */
    -moz-appearance: none; /* Voor Firefox */
    position: relative;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23333"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 6px;

}

.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration:none;
}


.login-container button:hover {
    background-color: #45a049;
}


.knopje:hover {
    background-color: #45a049;
}

.knopje {
    width: 90%;
    padding: 10px;
    margin: 10px ;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration:none;
}

.toggle-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration:none;
    font-size: 15px;
}

.toggle-button:hover {
    background-color: #45a049;
}

.logout-button {
    position: fixed;
    bottom: 70px;
    right: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration:none;
    font-size: 15px;
}

.logout-button:hover {
    background-color: #45a049;
}
.terug-button {
    position: fixed;
    bottom: 120px;
    right: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration:none;
    font-size: 15px;
}

.terug-button:hover {
    background-color: #45a049;
}
