/* ════════════════════════════════════════════════════════════
 * GBI Slawi — profile-modal.css
 * Modal profil: sub-tab & interest pills
 * ════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   PROFILE MODAL — tambahan sub-tab & interest pills
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Sub-tab switcher di dalam tab Edit ── */
.pm-edit-subtabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: var(--bg3);
    border-radius: 10px;
    padding: 4px;
}

.pm-edit-subtab {
    flex: 1;
    padding: 8px 14px;
    border: none;
    background: transparent;
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border-radius: 7px;
    transition: all .2s;
}

.pm-edit-subtab:hover {
    color: var(--text);
    background: var(--bg2);
}

.pm-edit-subtab.active {
    background: var(--gold);
    color: #000;
}

/* ── Interest pills (tab Info Jemaat) ── */
.pm-interests-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.pm-interest-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--gold-dim, rgba(201, 149, 42, .12));
    border: 1px solid var(--gold-border, rgba(201, 149, 42, .3));
    color: var(--gold, #c9952a);
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

/* ── select input pakai style auth-input ── */
select.auth-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* ── Light mode ── */
[data-theme="light"] .pm-edit-subtab.active {
    color: #fff;
}

[data-theme="light"] .pm-interest-pill {
    background: rgba(201, 149, 42, .1);
}

