.yahia-container {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 100%;
}

/* Titre style sh-yahia */
.yahia-title {
    color: #2c3e50;
    border-bottom: 2px solid #27ae60; /* Ligne verte caractéristique */
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.4em;
}

/* Lecteur */
.yahia-player-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.yahia-player-box audio {
    width: 100%;
}

/* Grille d'infos */
.yahia-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.yahia-info-item .label {
    font-weight: bold;
    color: #555;
}
.yahia-info-item .value {
    color: #27ae60;
}

/* Actions et Boutons */
.yahia-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-download {
    background: #27ae60;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.btn-download:hover {
    background: #219150;
}

/* Partage */
.yahia-share a {
    margin-right: 10px;
    font-size: 1.2em;
    transition: 0.3s;
}
.share-wa { color: #25D366; }
.share-tg { color: #0088cc; }
.share-fb { color: #3b5998; }
.yahia-share a:hover { opacity: 0.7; }

/* Responsive mobile */
@media (max-width: 600px) {
    .yahia-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}