.mp3-player-container {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 100%;
}

/* Sezione immagine e descrizione affiancate */
.player-media-section {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.image-container {
    flex-shrink: 0;
}

.player-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.media-description {
    flex: 1;
    min-width: 0;
}

.track-title-main {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3;
}

.track-artist-main,
.track-album-main {
    margin: 8px 0;
    color: #555;
    font-size: 1em;
    line-height: 1.4;
}

.track-artist-main strong,
.track-album-main strong {
    color: #333;
}

/* Link MP3 */
.mp3-links {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #007cba;
}

.direct-link,
.download-link {
    display: inline-block;
    margin-right: 20px;
    padding: 8px 16px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background-color 0.2s;
}

.direct-link:hover,
.download-link:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

/* Descrizione */
.full-description {
    color: #444;
    line-height: 1.6;
    font-size: 0.95em;
}

.full-description h3,
.full-description h4 {
    color: #2c3e50;
    margin: 15px 0 10px 0;
}

.full-description p {
    margin: 10px 0;
}

/* Container player WordPress */
.wp-player-container {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* Miglioramenti al player WordPress */
.wp-audio-shortcode {
    width: 100% !important;
}

.mejs-container {
    width: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
    .player-media-section {
        flex-direction: column;
        text-align: center;
    }
    
    .player-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .mp3-links {
        text-align: center;
    }
    
    .direct-link,
    .download-link {
        display: block;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .mp3-player-container {
        padding: 15px;
    }
}