    :root {
    --primary-color: #f88b30;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
}

.audio-pill-container {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    background: #fff;
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;

    padding: 10px 20px 10px 10px;
    transition: transform 0.3s ease;
    min-width: 600px;
    /* margin: 2rem; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.audio-pill-container:hover {
    transform: translateY(-5px);
}

#playPauseBtn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border: none;
    flex-shrink: 0;
}

.timestamp {
    font-size: 0.7rem;
    color: #6c757d;
}

.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #e9ecef;
    outline: none;
    cursor: pointer;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Show thumb on hover of the main pill */
.audio-pill-container:hover .custom-slider::-webkit-slider-thumb {
    opacity: 1;
}

.audio-pill-container .player-con{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.player-con .player-btn-track{
    display: flex;
        width: 100%;

    flex-direction: row;
}
.player-con p{
    font-size: 0.9rem;
    font-weight: bold;
}
.row-prog{
    display: flex;
    flex-direction: row;
    gap: 5px;
        flex: 1;
    align-items: center;
}
#playPauseBtn{
    cursor: pointer;
}
#playPauseBtn:hover{
    color: #f88b30;

}
