/* Styles pour les cards audio */
.audio-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.audio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.audio-icon {
    color: #043f7a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(4, 63, 122, 0.1);
}

.audio-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Style pour les contrôles audio */
audio {
    width: 100%;
    border-radius: 20px;
}

audio::-webkit-media-controls-panel {
    background-color: #f8f9fa;
}

audio::-webkit-media-controls-play-button {
    background-color: #043f7a;
    border-radius: 50%;
}

audio::-webkit-media-controls-timeline {
    background-color: rgba(4, 63, 122, 0.2);
    border-radius: 10px;
    height: 2px;
}

/* Espacement pour les contrôles audio */
.audio-controls {
    margin-top: 10px;
    margin-bottom: 15px;
}