/* ═══════════════════════════════════════
   GRACE COMMUNITY FELLOWSHIP — STYLESHEET
   ═══════════════════════════════════════ */
:root {
  --p1: #4A1D8C; --p2: #6B35C2; --p3: #8B5CF6; --p4: #C4B5FD; --p5: #EDE9FE;
  --gold: #D97706; --gold-l: #FCD34D; --green: #059669; --green-l: #A7F3D0;
  --red: #DC2626; --red-l: #FEE2E2; --blue: #1D4ED8; --blue-l: #DBEAFE;
  --amber: #B45309;
  --bg: #F8F6FF; --surface: #FFFFFF; --surface2: #F3F0FC;
  --border: #E5E0F8; --text: #1E1035; --text2: #6B5F8A; --text3: #9D93B8;
  --shadow-sm: 0 1px 4px rgba(74,29,140,0.08);
  --shadow: 0 2px 12px rgba(74,29,140,0.12);
  --shadow-lg: 0 8px 32px rgba(74,29,140,0.18);
  --radius: 18px; --radius-sm: 12px; --radius-xs: 8px;
  --nav-h: 68px; --header-h: 58px;
  --font: 'Outfit', 'Noto Sans Devanagari', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; font-family: var(--font); }
body { background: #1A0A3C; color: var(--text); -webkit-font-smoothing: antialiased; }

/* ── AUTH BODY ── */
.auth-body { background: var(--bg); display: flex; align-items: flex-start; justify-content: center; min-height: 100vh; }
.auth-shell { width: 100%; max-width: 420px; min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }

/* ── APP SHELL ── */
#app { max-width: 420px; margin: 0 auto; min-height: 100vh; background: var(--bg); display: flex; flex-direction: column; position: relative; box-shadow: 0 0 80px rgba(139,92,246,0.3); }
.bg-app { background: var(--bg); }

/* ── HEADER ── */
.app-header { background: var(--p1); min-height: var(--header-h); display: flex; align-items: center; padding: 0 14px; gap: 10px; flex-shrink: 0; position: sticky; top: 0; z-index: 50; }
.hdr-logo { width: 34px; height: 34px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hdr-title { color: #fff; font-size: 15px; font-weight: 700; line-height: 1.2; }
.hdr-sub { color: rgba(255,255,255,0.6); font-size: 10px; font-weight: 400; }
.hdr-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.12); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; cursor: pointer; position: relative; flex-shrink: 0; transition: background 0.15s; text-decoration: none; }
.hdr-btn:hover { background: rgba(255,255,255,0.22); }
.hdr-back { font-size: 18px; font-weight: 600; }
.notif-dot { position: absolute; top: 4px; right: 4px; width: 9px; height: 9px; background: var(--gold-l); border-radius: 50%; border: 2px solid var(--p1); }

/* ── CONTENT ── */
.content { flex: 1; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: calc(var(--nav-h) + 8px); }
.content::-webkit-scrollbar { display: none; }
.pad { padding: 0 14px; }

/* ── BOTTOM NAV ── */
.bottom-nav { height: var(--nav-h); background: var(--surface); border-top: 1px solid var(--border); display: flex; align-items: center; padding: 0 4px; flex-shrink: 0; position: sticky; bottom: 0; z-index: 40; }
.nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; padding: 8px 4px; text-decoration: none; }
.nav-icon { font-size: 22px; line-height: 1; }
.nav-label { font-size: 10px; font-weight: 500; color: var(--text3); }
.nav-item.active .nav-label { color: var(--p2); }
.inline-avatar { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: #fff; }

/* ── FAB ── */
.fab { position: fixed; bottom: calc(var(--nav-h) + 16px); right: 50%; transform: translateX(calc(210px - 16px)); width: 52px; height: 52px; background: linear-gradient(135deg,var(--p2),var(--p3)); border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; cursor: pointer; box-shadow: 0 4px 20px rgba(107,53,194,0.45); z-index: 30; text-decoration: none; transition: transform 0.2s; }
.fab:hover { transform: translateX(calc(210px - 16px)) scale(1.08); }
@media (max-width: 420px) { .fab { transform: none; right: 16px; } .fab:hover { transform: scale(1.08); } }

/* ── CARDS ── */
.card { background: var(--surface); border-radius: var(--radius); padding: 14px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

/* ── AVATAR ── */
.avatar { border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; color: #fff; }
.av-sm { width: 30px; height: 30px; font-size: 11px; }
.av-md { width: 38px; height: 38px; font-size: 14px; }
.av-lg { width: 56px; height: 56px; font-size: 20px; }
.av-xl { width: 72px; height: 72px; font-size: 26px; }

/* ── DISCUSSION CARD ── */
.disc-card { background: var(--surface); border-radius: var(--radius); padding: 14px; border: 1px solid var(--border); border-left: 3px solid var(--p3); box-shadow: var(--shadow-sm); cursor: pointer; transition: box-shadow 0.15s, transform 0.15s; }
.disc-card:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.disc-card.prayer-type { border-left-color: var(--gold); }
.disc-card.bible-type { border-left-color: var(--blue); }
.disc-card.testimony-type { border-left-color: var(--green); }
.disc-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.disc-author { font-size: 12px; font-weight: 600; color: var(--text); }
.disc-group { font-size: 10px; color: var(--text3); }
.disc-title { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 4px; }
.disc-body { font-size: 12px; color: var(--text2); line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.disc-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 6px; }
.disc-footer { display: flex; align-items: center; gap: 14px; padding-top: 8px; border-top: 1px solid var(--border); }
.disc-action { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--text3); cursor: pointer; background: none; border: none; font-family: var(--font); transition: color 0.15s; }
.disc-action:hover, .disc-action.active { color: var(--p2); }
.pin-badge { background: var(--p5); color: var(--p2); font-size: 9.5px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }

/* ── TAGS ── */
.tag { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 20px; background: var(--p5); color: var(--p2); }
.tag.gold { background: #FEF3C7; color: var(--amber); }
.tag.green { background: #D1FAE5; color: var(--green); }
.tag.blue { background: var(--blue-l); color: var(--blue); }

/* ── FILTER CHIPS ── */
.filter-row { display: flex; gap: 6px; overflow-x: auto; padding: 10px 14px 6px; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.chip { flex-shrink: 0; font-size: 11.5px; font-weight: 500; padding: 6px 13px; border-radius: 20px; background: var(--surface); color: var(--text2); border: 1px solid var(--border); cursor: pointer; white-space: nowrap; transition: all 0.15s; text-decoration: none; font-family: var(--font); }
.chip.active { background: var(--p2); color: #fff; border-color: var(--p2); }
.chip:hover:not(.active) { border-color: var(--p3); color: var(--p2); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 20px; border-radius: var(--radius-sm); font-family: var(--font); font-size: 13.5px; font-weight: 600; cursor: pointer; border: none; transition: all 0.15s; text-decoration: none; }
.btn-primary { background: var(--p2); color: #fff; }
.btn-primary:hover { background: var(--p1); }
.btn-outline { background: transparent; border: 2px solid var(--p2); color: var(--p2); }
.btn-outline:hover { background: var(--p5); }
.btn-ghost { background: var(--surface2); color: var(--text2); }
.btn-ghost:hover { background: var(--border); }
.btn-danger { background: var(--red-l); color: var(--red); }
.btn-sm { padding: 7px 14px; font-size: 11.5px; border-radius: var(--radius-xs); }
.btn-xs { padding: 5px 10px; font-size: 10.5px; border-radius: 8px; }
.w-full { width: 100%; }

/* ── FORMS ── */
.form-group { margin-bottom: 13px; }
.form-label { display: block; font-size: 11.5px; font-weight: 600; color: var(--text2); margin-bottom: 5px; }
.form-input { width: 100%; background: var(--surface2); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 11px 13px; font-family: var(--font); font-size: 13px; color: var(--text); outline: none; transition: border-color 0.15s; }
.form-input:focus { border-color: var(--p3); background: var(--surface); }
.form-input::placeholder { color: var(--text3); }
textarea.form-input { resize: vertical; min-height: 80px; }
select.form-input { cursor: pointer; }
.form-link { font-size: 11.5px; color: var(--p3); font-weight: 600; cursor: pointer; text-decoration: none; }

/* ── LANG TOGGLE ── */
.lang-toggle { display: flex; background: var(--surface2); border-radius: 10px; padding: 3px; }
.lang-btn { flex: 1; text-align: center; font-size: 12.5px; font-weight: 600; padding: 8px; border-radius: 8px; cursor: pointer; color: var(--text2); transition: all 0.2s; font-family: var(--font); border: none; background: transparent; }
.lang-btn.active { background: var(--p2); color: #fff; }

/* ── SECTION HEADERS ── */
.sec-hdr { display: flex; align-items: center; justify-content: space-between; }
.sec-title { font-size: 13px; font-weight: 700; color: var(--text); }
.sec-more { font-size: 11.5px; color: var(--p3); font-weight: 600; cursor: pointer; text-decoration: none; }

/* ── DEVOTION BANNER ── */
.devotion-banner { background: linear-gradient(135deg,var(--p1) 0%,var(--p2) 60%,#9333EA 100%); border-radius: var(--radius); padding: 18px; color: #fff; position: relative; overflow: hidden; }
.devotion-banner::before { content: '✦'; position: absolute; right: 14px; top: 10px; font-size: 60px; opacity: 0.07; }
.devotion-date { font-size: 10px; font-weight: 500; opacity: 0.65; margin-bottom: 6px; }
.devotion-verse { font-size: 14px; font-weight: 600; line-height: 1.5; font-style: italic; margin-bottom: 8px; }
.devotion-ref { font-size: 11px; opacity: 0.75; font-weight: 500; margin-bottom: 12px; }
.devotion-actions { display: flex; gap: 8px; }
.devotion-btn { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-family: var(--font); font-size: 11px; font-weight: 600; padding: 6px 14px; border-radius: 20px; cursor: pointer; transition: background 0.15s; }
.devotion-btn:hover { background: rgba(255,255,255,0.28); }

/* ── STATS ROW ── */
.stats-row { display: flex; gap: 8px; padding: 0 14px; margin-bottom: 12px; }
.stat-box { flex: 1; text-align: center; background: var(--surface); border-radius: var(--radius-sm); padding: 10px 8px; border: 1px solid var(--border); }
.stat-val { font-size: 20px; font-weight: 800; color: var(--p2); line-height: 1.1; }
.stat-lbl { font-size: 10px; color: var(--text3); font-weight: 500; margin-top: 2px; }

/* ── ANSWER CARD ── */
.answer-card { background: var(--surface2); border-radius: var(--radius-sm); padding: 12px; border: 1px solid var(--border); }
.answer-card.best-answer { background: linear-gradient(135deg,rgba(5,150,105,0.05),rgba(5,150,105,0.02)); border-color: rgba(5,150,105,0.3); }
.best-label { display: inline-flex; align-items: center; gap: 4px; background: #D1FAE5; color: var(--green); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-bottom: 7px; }
.answer-body { font-size: 12.5px; color: var(--text); line-height: 1.6; margin: 7px 0; }
.answer-actions { display: flex; align-items: center; gap: 12px; }
.reply-thread { margin-left: 14px; padding-left: 12px; border-left: 2px solid var(--border); margin-top: 8px; }
.reply-item { background: var(--surface); border-radius: var(--radius-xs); padding: 9px; margin-bottom: 5px; }

/* ── PRAYER CARD ── */
.prayer-card { background: var(--surface); border-radius: var(--radius); padding: 14px; border: 1px solid var(--border); border-left: 3px solid var(--gold); box-shadow: var(--shadow-sm); }
.pray-btn { display: inline-flex; align-items: center; gap: 6px; background: #FEF3C7; border: 1px solid #FDE68A; color: var(--amber); font-family: var(--font); font-size: 11.5px; font-weight: 600; padding: 6px 14px; border-radius: 20px; cursor: pointer; transition: all 0.15s; }
.pray-btn.prayed { background: var(--gold); border-color: var(--gold); color: #fff; }
.answered-badge { display: inline-flex; align-items: center; gap: 4px; background: #D1FAE5; color: var(--green); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

/* ── PROFILE ── */
.profile-header { background: linear-gradient(160deg,var(--p1),var(--p2)); padding: 24px 16px 20px; text-align: center; color: #fff; }
.profile-name { font-size: 18px; font-weight: 800; margin-top: 10px; }
.profile-role { font-size: 11px; opacity: 0.7; margin-top: 2px; }
.profile-church { font-size: 11.5px; opacity: 0.75; margin-top: 3px; }
.badge-row { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.badge-pill { background: rgba(255,255,255,0.18); font-size: 10px; font-weight: 600; padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); }
.profile-stats { display: flex; border-bottom: 1px solid var(--border); background: var(--surface); }
.pstat { flex: 1; text-align: center; padding: 14px 0; }
.pstat-v { font-size: 18px; font-weight: 800; color: var(--p2); }
.pstat-l { font-size: 10px; color: var(--text3); font-weight: 500; }
.menu-row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); cursor: pointer; background: var(--surface); transition: background 0.1s; text-decoration: none; }
.menu-row:hover { background: var(--surface2); }
.menu-icon { font-size: 18px; width: 30px; text-align: center; }
.menu-txt { font-size: 13px; font-weight: 500; color: var(--text); flex: 1; }
.menu-chev { color: var(--text3); font-size: 16px; }
.menu-row.danger .menu-txt { color: var(--red); }

/* ── ADMIN ── */
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 14px 12px; }
.admin-card { background: var(--surface); border-radius: var(--radius-sm); padding: 14px; border: 1px solid var(--border); text-align: center; }
.admin-card-icon { font-size: 26px; margin-bottom: 4px; }
.admin-card-val { font-size: 24px; font-weight: 800; color: var(--p2); }
.admin-card-lbl { font-size: 10px; color: var(--text3); font-weight: 500; }
.admin-card.warn .admin-card-val { color: var(--gold); }
.admin-card.danger .admin-card-val { color: var(--red); }
.request-row { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.request-info { flex: 1; min-width: 0; }
.request-name { font-size: 12.5px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.request-email { font-size: 10.5px; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── NOTIFICATIONS ── */
.notif-row { display: flex; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.1s; }
.notif-row:hover { background: var(--surface2); }
.notif-row.unread { background: rgba(107,53,194,0.04); }
.notif-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; background: rgba(107,53,194,0.1); }
.notif-txt { font-size: 12px; color: var(--text); line-height: 1.5; }
.notif-time { font-size: 10.5px; color: var(--text3); margin-top: 2px; }
.unread-dot { width: 8px; height: 8px; background: var(--p3); border-radius: 50%; flex-shrink: 0; margin-top: 4px; }

/* ── EVENTS ── */
.event-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; display: flex; box-shadow: var(--shadow-sm); }
.event-date { width: 56px; background: var(--p2); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.event-day { font-size: 22px; font-weight: 800; line-height: 1; }
.event-mon { font-size: 10px; font-weight: 600; opacity: 0.8; text-transform: uppercase; }
.event-body { padding: 12px; flex: 1; min-width: 0; }
.event-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.event-meta { font-size: 11px; color: var(--text3); }
.event-rsvp { align-self: center; }

/* ── RESOURCES ── */
.res-card { background: var(--surface); border-radius: var(--radius-sm); padding: 12px; border: 1px solid var(--border); cursor: pointer; transition: box-shadow 0.15s; display: flex; gap: 10px; align-items: center; text-decoration: none; color: inherit; }
.res-card:hover { box-shadow: var(--shadow); }
.res-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.res-title { font-size: 12.5px; font-weight: 600; color: var(--text); }
.res-meta { font-size: 10.5px; color: var(--text3); margin-top: 2px; }

/* ── SEARCH BAR ── */
.search-bar { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 13px; transition: border-color 0.15s; }
.search-bar:focus-within { border-color: var(--p3); }

/* ── CHAT ── */
.chat-msg { display: flex; gap: 8px; margin-bottom: 10px; }
.chat-msg.mine { flex-direction: row-reverse; }
.chat-bubble { max-width: 78%; background: var(--surface); border: 1px solid var(--border); border-radius: 14px 14px 14px 4px; padding: 9px 12px; font-size: 12.5px; color: var(--text); line-height: 1.5; }
.chat-msg.mine .chat-bubble { background: var(--p2); color: #fff; border-color: var(--p2); border-radius: 14px 14px 4px 14px; }
.chat-time { font-size: 9.5px; color: var(--text3); margin-top: 3px; }
.text-right { text-align: right; }
.chat-input-bar { display: flex; gap: 8px; align-items: center; padding: 10px 12px; background: var(--surface); border-top: 1px solid var(--border); flex-shrink: 0; }
.chat-input { flex: 1; border: 1.5px solid var(--border); border-radius: 20px; padding: 9px 14px; font-family: var(--font); font-size: 13px; outline: none; background: var(--surface2); color: var(--text); }
.chat-input:focus { border-color: var(--p3); }
.chat-send { width: 38px; height: 38px; background: var(--p2); border: none; border-radius: 50%; color: #fff; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── BOTTOM SHEET MODAL ── */
.sheet-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 100; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s; backdrop-filter: blur(2px); }
.sheet-overlay.open { opacity: 1; pointer-events: all; }
.sheet-panel { width: 100%; max-width: 420px; background: var(--surface); border-radius: 24px 24px 0 0; padding: 20px 16px 32px; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.32,0.72,0,1); max-height: 90vh; overflow-y: auto; }
.sheet-overlay.open .sheet-panel { transform: translateY(0); }
.sheet-handle { width: 36px; height: 4px; background: var(--border); border-radius: 2px; margin: 0 auto 16px; }
.sheet-title { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 14px; }

/* ── TOAST ── */
.toast { position: fixed; bottom: calc(var(--nav-h) + 16px); left: 50%; transform: translateX(-50%) translateY(20px); background: var(--text); color: #fff; padding: 10px 20px; border-radius: 20px; font-size: 12.5px; font-weight: 500; opacity: 0; transition: all 0.3s; z-index: 999; pointer-events: none; white-space: nowrap; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.toast-error { background: var(--red); }

/* ── ALERTS ── */
.alert { padding: 12px 14px; border-radius: var(--radius-sm); font-size: 12.5px; }
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.alert-error { background: var(--red-l); color: #991B1B; border: 1px solid #FCA5A5; }

/* ── LOGIN ── */
.login-hero { background: linear-gradient(170deg,var(--p1),var(--p2),#9333EA); padding: 48px 24px 36px; text-align: center; color: #fff; flex-shrink: 0; }
.login-cross { font-size: 52px; margin-bottom: 10px; display: block; }
.login-name { font-size: 22px; font-weight: 800; }
.login-tagline { font-size: 12px; opacity: 0.7; margin-top: 4px; }
.login-form-wrap { background: var(--surface); border-radius: 24px 24px 0 0; margin-top: -20px; padding: 24px 20px 32px; flex: 1; }
.form-section-title { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.divider-text { text-align: center; font-size: 11px; color: var(--text3); margin: 14px 0; }

/* ── TOGGLE ── */
.toggle-track { width: 40px; height: 22px; background: var(--border); border-radius: 11px; cursor: pointer; position: relative; transition: background 0.2s; }
.toggle-knob { width: 16px; height: 16px; background: #fff; border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: left 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
input:checked ~ .toggle-track { background: var(--p2); }
input:checked ~ .toggle-track .toggle-knob { left: 21px; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 40px 20px; color: var(--text3); }
.empty-icon { font-size: 40px; margin-bottom: 10px; }
.empty-txt { font-size: 13px; font-weight: 500; }
.divider { height: 1px; background: var(--border); }

/* ── UTILITIES ── */
.flex { display: flex; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.min-w-0 { min-width: 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.text-primary { color: var(--p2); }
.text-secondary { color: var(--text2); }
.text-muted { color: var(--text3); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.block { display: block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-3 { margin-left: 12px; margin-right: 12px; }
.mx-4 { margin-left: 16px; margin-right: 16px; }
.ml-auto { margin-left: auto; }
.ml-1 { margin-left: 4px; }
.ml-2 { margin-left: 8px; }
.mr-1 { margin-right: 4px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.p-2 { padding: 8px; }
.p-4 { padding: 16px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-10 { padding-top: 40px; padding-bottom: 40px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.pt-1 { padding-top: 4px; }
.pt-3 { padding-top: 12px; }
.pt-4 { padding-top: 16px; }
.rounded { border-radius: var(--radius-xs); }
.opacity-40 { opacity: 0.4; }
.opacity-70 { opacity: 0.7; }
.cursor-pointer { cursor: pointer; }
.no-underline { text-decoration: none; }
.bg-surface { background: var(--surface); }
.bg-surface2 { background: var(--surface2); }
.border-0 { border: none; }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-border { border-color: var(--border); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.w-5 { width: 20px; }
