.ap-container {
    font-family: sans-serif;
    background: #13323E;
    background: linear-gradient(345deg, rgba(19, 50, 62, 1) 0%, rgba(48, 90, 115, 1) 100%);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.ap-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.ap-container button {
    background: transparent;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;

    transform: scale(1);
    transition: all 0.2s;
}
.ap-container button:hover {
    transform: scale(1.1);
}
.ap-progress, .ap-volume {
    width: 100%;
    margin-top: 8px;
}

.ap-play img {
    width: 50px;
}

.ap-timer {
    color:#FFFFFF;
    font-size: 12px;
}


/* Base styling */
.styled-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #FFFFFF;
    border-radius: 3px;
    outline: none;
    margin: 10px 0;
}

/* WebKit (Chrome, Safari, Edge) */
.styled-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #739792;
    cursor: pointer;
    border: none;
    margin-top: -6px; /* Align thumb with track */
}

.styled-slider::-webkit-slider-runnable-track {
    height: 6px;
    /*background: #FFFFFF;*/
    border-radius: 3px;
}

/* Firefox */
.styled-slider::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
}

.styled-slider::-moz-range-track {
    height: 6px;
    background: #000000;
    border-radius: 3px;
}

/* Internet Explorer */
.styled-slider::-ms-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
}

.styled-slider::-ms-track {
    height: 6px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.styled-slider::-ms-fill-lower {
    background: #000000;
    border-radius: 3px;
}

.styled-slider::-ms-fill-upper {
    background: #000000;
    border-radius: 3px;
}



/* Styled sliders with fill */
.with-fill {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #FDF9D5 0%, #FFF 0%);
    border-radius: 3px;
    outline: none;
    margin: 10px 0;
    transition: background 150ms ease-in-out;
}

.with-fill::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #739792;
    border: none;
    cursor: pointer;
    margin-top: -6px;
}

.with-fill::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #007bff;
    border: none;
    cursor: pointer;
}

.with-fill::-ms-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #007bff;
    border: none;
    cursor: pointer;
}

