#audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
}

#play-pause {
    cursor: pointer;
    font-size: 20px;
}

#progress {
    width: 200px;
    height: 10px;
    background-color: #e0e0e0;
    position: relative;
    cursor: pointer;
}

#progress-bar {
    height: 100%;
    background-color: #3b82f6;
    width: 0;
}

.custom-duration {
    font-size: 14px;
}

#testAudio {
    display: none;
}

#volume-control {
    display: flex;
    align-items: center;
    gap: 5px;
}
#volume-slider {
    width: 100px;
}