﻿.audio-player {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top:20px;
    margin-bottom:20px;
}

.play-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #007aff;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

    .play-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

.time {
    font-size: 12px;
    color: #666;
    min-width: 80px;
    text-align: center;
}

.progress-bar-bg {
    flex: 1;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    background: #007aff;
    border-radius: 2px;
    width: 0;
}

.progress-dot {
    width: 12px;
    height: 12px;
    background: #007aff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.error {
    color: #e74c3c;
    font-size: 12px;
    margin-left: 8px;
}
