/* Default (light) mode styles */
body {
    background-color: white;
    color: black;
    font-family: Arial, sans-serif;
}

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

.dark-mode-switch {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    background-color: #f1f1f1;
}

.dark-mode-switch label {
    margin-right: 10px;
}

.dark-mode .dark-mode-switch {
    background-color: #333;
    color: #e0e0e0;
}