.custom-audio-player {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 24px;
    border-radius: 16px;
    background: var(--background-color);
    max-width: 100%;
    width: 100%;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.audio-controls .play-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: var(--accent-color);
    color: var(--on-accent-text-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-controls .play-btn:hover {
    background: var(--accent-light-background-color);
    color: var(--on-accent-light-background-color);
}

.audio-controls .progress-bar {
    flex-grow: 1;
    height: 8px;
    background: var(--input-border-color);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    max-width: 100%;
    min-width: 120px;
}

.audio-controls .progress-fill {
    position: absolute;
    height: 100%;
    background: var(--accent-color);
    border-radius: 4px;
    left: 0;
    top: 0;
    width: 0%;
    transition: width 0.1s linear;
}

.audio-controls .current-time,
.audio-controls .duration {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-text-color);
    white-space: nowrap;
}
