.sap-player {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    background: #fff;
    max-width: 720px;
}

.sap-cover img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.sap-main {
    display: grid;
    gap: 8px;
}

.sap-title {
    font-weight: 600;
    color: #222;
}

.sap-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sap-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #111;
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.sap-btn:hover {
    filter: brightness(1.1);
}

.sap-time {
    font-size: 12px;
    color: #555;
}

.sap-progress {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
}

.sap-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff7a18, #af002d 70%);
    border-radius: 999px;
    transition: width 0.1s linear;
}

.sap-volume {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sap-vol-range {
    width: 140px;
}

.sap-vol-icon {
    font-size: 14px;
}