/* Darkmode.css */
/* Basisstijl en thema-knop voor licht- en donkermodus */

/* Standaard (lichte) modus */
body {
    background-color: #ffffff;
    color: #333333;
    transition: background-color 0.3s, color 0.3s; /* soepele overgang bij moduswissel */
}

/* Donkere modus actief */
body.dark-mode {
    background-color: #333333;
    color: #ffffff;
}

/* Knop om tussen licht en donker te schakelen */
#theme-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-right: 10px;
}

