/* ── Smart Audio Player v2.0 ── */

.sap-wrap {
    display: inline-block;
    margin: 4px 0;
}

/* ── Style 1: Pill ───────────────────────────── */
.sap-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: none;
    border-radius: 999px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    height: 38px;
    transition: opacity 0.15s;
}
.sap-pill-btn:hover { opacity: 0.85; }

.sap-pill-icon {
    width: 34px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}
.sap-pill-label {
    padding: 0 16px 0 10px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
}

/* ── Style 2: Circle only ────────────────────── */
.sap-circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.15s;
}
.sap-circle-btn:hover { opacity: 0.85; }

/* ── Style 3: Row card ───────────────────────── */
.sap-row-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #ffffff;
    max-width: 360px;
}
.sap-row-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.15s;
}
.sap-row-btn:hover { opacity: 0.85; }
.sap-row-label {
    font-size: 14px;
    color: #111111;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Style 4: Outline / Ghost ────────────────── */
.sap-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border-radius: 999px;
    border-width: 1.5px;
    border-style: solid;
    padding: 8px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.15s;
    white-space: nowrap;
}
.sap-outline-btn:hover { background: rgba(0, 0, 0, 0.05); }
.sap-outline-label { line-height: 1; }

/* ── Style 5: Large circle + label below ─────── */
.sap-large-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.sap-large-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s;
}
.sap-large-btn:hover { opacity: 0.85; }
.sap-large-label {
    font-size: 12px;
    color: #555555;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
}
