/* static/css/audio_player.css */
.markdown-audio {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0d6efd;
}

.theory-audio-player {
    width: 100%;
    height: 40px;
    margin-bottom: 8px;
}

.audio-caption {
    font-size: 0.9em;
    color: #6c757d;
    text-align: center;
    font-style: italic;
    margin-top: 5px;
}

/* Стили для карточек аудио в форме */
.audio-card {
    transition: transform 0.2s;
}

.audio-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.audio-preview {
    background: #e9ecef;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}

.audio-preview i {
    font-size: 2rem;
    color: #0d6efd;
}