/* Simple Audio Player Styles */

.audio-player {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin: 1rem 0;
}

.audio-player .controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audio-player .play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.audio-player .play-btn:hover {
    transform: scale(1.05);
}

.audio-player .progress-bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.audio-player .progress-bar .progress {
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 3px;
    transition: width 0.1s ease;
}

.audio-player .time {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
}

.audio-player .volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audio-player .volume input[type="range"] {
    width: 80px;
}
