.custom-audio-player {
    display: flex;
    align-items: center;
    background: #13131a;
    padding: 10px 15px;
    border-radius: 10px;
    color: #fff;
    font-family: Arial, sans-serif;
    max-width: 450px;
    gap: 10px;
}

.play-btn {
    position: relative;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    pointer-events: none; /* Prevents SVG from blocking clicks */
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.2s linear;
    stroke-dasharray: 82px; /* Full circle */
    stroke-dashoffset: 82px; /* Start empty */

}

.play-icon, .pause-icon {
    width: 24px;
    height: 24px;
}

.play-btn img {
    pointer-events: none; /* Prevents icons from blocking button click */
}


/* .waveform {
    width: 100px;
    height: 15px;
    flex-grow: 1;
} */

.audio-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.title {
    font-size: 14px;
    font-weight: bold;
}

.duration {
    font-size: 12px;
    color: #ccc;
}

.progress-container {
    width: 100%;
    height: 5px;
    background: #444;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #ffc107;
    transition: width 0.2s ease-in-out;
}
