/* Estilos básicos para o player de áudio Mozart */
#mozart-player-container { /* ID customizado */
    background: #f8f8f8;
    border: 1px solid #eee;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mozart-audio-controls { /* Classe customizada */
    text-align: center;
    margin-bottom: 20px;
}

#mozart-current-track-title { /* ID customizado */
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

#mozart-html5-audio-player { /* ID customizado */
    width: 100%;
    margin-bottom: 15px;
}

.mozart-player-buttons button { /* Classe customizada */
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}
.mozart-player-buttons button:hover {
    background-color: #0056b3;
}

/* Estilo específico para o botão de download dentro do player */
#mozart-download-button button {
    background-color: #28a745; /* Verde para download */
    color: white;
    border: none;
    padding: 10px 15px;
    margin-left: 15px; /* Separar um pouco dos outros botões */
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}
#mozart-download-button button:hover {
    background-color: #218838;
}

#mozart-audio-playlist { /* ID customizado */
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.mozart-playlist-item { /* Classe customizada */
    padding: 10px 15px;
    margin-bottom: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.mozart-playlist-item:hover {
    background-color: #e9e9e9;
}
.mozart-playlist-item.mozart-active { /* Classe customizada para ativo */
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}
.mozart-playlist-item.mozart-active:hover {
    background-color: #0056b3;
}