body {
    background-color: #0d1117; /* Darker, modern background */
    font-family: 'Roboto', monospace;
}

/* Maintain your signature font for the whole app */
* { font-family: 'Roboto', monospace; }

/* Table styling for the music list */
#music-table {
    border: 1px solid #30363d;
}

.url_details_container {
    cursor: pointer;
    transition: background 0.2s;
}

.url_details_container:hover {
    background-color: #21262d !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #8b949e; }

/* Glow effect for the active track */
#track-name {
    text-shadow: 0 0 10px rgba(13, 202, 240, 0.5);
}