body {
    font-family: 'Inter', sans-serif;
    padding-bottom: 80px; /* Add padding to prevent content from being hidden by the time controls */
}

/* Custom scrollbar for a more modern look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Style for the select dropdown arrow */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

 /* Custom z-index values to ensure correct layering */
#time-controls { z-index: 40; }
#menu-open-btn { z-index: 45; }
#overlay { z-index: 50; }
#main-nav { z-index: 60; }
