body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

#datetime { font-size: 1.2em; }
#title-network h1 { margin: 0; font-size: 1.5em; }

main {
    display: flex;
    padding: 20px;
    gap: 20px;
}

#player-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cover-art {
    display: block;
    border: 5px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 200px;
    height: 200px;
}

#audio-player { width: 100%; max-width: 400px; margin-top: 10px; }

#playlist-container {
    width: 40%;
    max-height: 80vh; 
    overflow-y: auto; 
    border-left: 1px solid #ccc;
    padding-left: 20px;
}

#playlist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column; 
}

#playlist li { padding: 8px; margin-bottom: 2px; border-bottom: 1px solid #eee; }

/* Brano in riproduzione: colore evidenziato e spostato in cima */
.active-song {
    background-color: #FF7043; 
    color: white;
    font-weight: bold;
    order: -1; 
    padding: 10px 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}