/* Обёртка плеера */
.ap-wrapper {
max-width: 320px;
margin: 20px auto;
padding: 16px;
border-radius: 20px;
background: #e0e0e0;
box-shadow: 0 8px 20px rgba(0,0,0,0.06);
font-family: "Inter", sans-serif;
}


/* Кнопка */
.ap-btn {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 14px 0;
border: none;
border-radius: 14px;
background: #fff;
font-size: 18px;
cursor: pointer;
transition: 0.25s ease;
}


.ap-btn:hover {
background: #ececec;
}


/* Прогресс-бар */
.ap-progress {
width: 100%;
margin-top: 14px;
}


.ap-progress input[type="range"] {
width: 100%;
cursor: pointer;
}