/* Dark Mode */
.dark-mode {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

/* Dark Mode Button Styles */
.dark-mode .button {
    color: white; /* Ensure white text in dark mode */
}

/* Dark Mode Toggle Button */
#theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background: transparent;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#theme-toggle:hover {
    background: #607D8B;
}

.countdown {
    font-weight: bold;
}


/* Ensure hover effect works smoothly */
.hover-info {
    cursor: pointer;
}

/* Darker hover description text */
#hover-description {
    font-size: 16px;
    color: #333;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out;
    margin-top: 10px;
}


