/* Family Wallet — app shell styles (Bootstrap 5.3 CDN, no build step) */
/* Redesigned to match approved "Kidzapp violet" mockup — see wallet-redesign.html preview. */

:root {
    --fw-theme-color: #7c3aed;
    --fw-bottom-nav-height: 76px;
    --fw-sidebar-width: 240px;

    --accent: #7c3aed;
    --accent-deep: #4c1d95;
    --accent-soft: #f5f3ff;
    --accent-line: #ddd6fe;
    --ink: #1e1b2e;
    --ink-soft: #6b6478;
    --ink-faint: #9691a4;
    --surface: #ffffff;
    --ground: #faf9fc;
    --border: #ece8f5;
    --success: #059669;
    --success-soft: #d1fae5;
    --danger: #dc2626;
    --danger-soft: #fee2e2;
    --warning: #d97706;
    --warning-soft: #fef3c7;
    --shadow: 0 1px 2px rgba(30, 27, 46, 0.04), 0 12px 32px -12px rgba(76, 29, 149, 0.18);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --ground: #17141f;
        --surface: #1f1a2b;
        --ink: #f1eef8;
        --ink-soft: #a39dbc;
        --ink-faint: #7c7692;
        --border: #2a2438;
        --accent-soft: #2a2340;
        --accent-line: #3b2f5c;
    }
}

:root[data-theme="dark"] {
    --ground: #17141f;
    --surface: #1f1a2b;
    --ink: #f1eef8;
    --ink-soft: #a39dbc;
    --ink-faint: #7c7692;
    --border: #2a2438;
    --accent-soft: #2a2340;
    --accent-line: #3b2f5c;
}

html {
    overflow-x: hidden;
}

body {
    padding-bottom: var(--fw-bottom-nav-height);
    background-color: var(--ground);
    color: var(--ink);
    font-family: "Manrope", -apple-system, "Segoe UI", sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.fw-display {
    font-family: "Sora", "Manrope", sans-serif;
}

.fw-money,
.fs-3, .fs-4, .fs-5 {
    font-variant-numeric: tabular-nums;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

/* ---------- App shell layout ---------- */

.app-shell {
    display: flex;
    min-height: 100vh;
}

.app-sidebar {
    display: none;
}

@media (min-width: 992px) {
    .app-sidebar {
        display: flex;
        flex-direction: column;
        width: var(--fw-sidebar-width);
        flex-shrink: 0;
        background-color: var(--surface);
        border-right: 1px solid var(--border);
        min-height: 100vh;
        position: sticky;
        top: 0;
    }
}

.app-main {
    flex: 1 1 auto;
    min-width: 0;
}

.app-topbar {
    background-color: var(--surface) !important;
    border-bottom: 1px solid var(--border);
}

.app-topbar .navbar-brand {
    font-weight: 700;
    color: var(--ink) !important;
}

.navbar-brand-glyph {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(150deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Mobile: page title stays, just smaller — the header bar itself is
   already folded into the top of the content area instead of a
   separate bordered bar (see app.blade.php). */
@media (max-width: 991.98px) {
    .page-header-slot h2.h4.mb-0 {
        font-size: 1.05rem;
    }
}

@media (min-width: 992px) {
    .navbar-brand-glyph {
        display: none;
    }
}

/* ---------- Cards / shared components ---------- */

.card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    color: var(--ink);
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--accent-deep);
    border-color: var(--accent-deep);
}

.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent-line);
    border-radius: 999px;
}

.btn-outline-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-secondary,
.btn-secondary,
.btn-outline-danger,
.btn-outline-success {
    border-radius: 999px;
}

.badge {
    border-radius: 999px;
}

.label-sm {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.section-head-fw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-head-fw h3 {
    font-family: "Sora", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0;
}

.section-head-fw a {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

/* ---------- Net worth / hero card ---------- */

.hero-networth {
    background: linear-gradient(150deg, var(--accent) 0%, var(--accent-deep) 100%);
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: none;
}

.hero-networth::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -70px;
    right: -50px;
}

.hero-networth .label-sm,
.hero-networth h3 {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-eye-toggle {
    background: rgba(255, 255, 255, 0.16);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-eye-toggle:hover,
.hero-eye-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.28);
}

[x-cloak] {
    display: none !important;
}

.hero-networth .hero-figure {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 7vw, 1.9rem);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* ---------- Wallet tiles ---------- */

.wallet-tile-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.wallet-glyph {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.wallet-glyph.bank { background: #e0e7ff; color: #4338ca; }
.wallet-glyph.cash { background: var(--success-soft); color: var(--success); }
.wallet-glyph.credit_card { background: var(--accent-soft); color: var(--accent-deep); }
.wallet-glyph.loan { background: var(--warning-soft); color: var(--warning); }
.wallet-glyph.installment_card { background: #e0e7ff; color: #4338ca; }

.wallet-amt.neg {
    color: var(--danger);
}

/* ---------- Transactions ---------- */

.txn-glyph {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: var(--accent-soft);
    color: var(--accent-deep);
}

.badge-admin {
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--accent-soft);
    color: var(--accent-deep);
    padding: 2px 8px;
    border-radius: 999px;
}

.txn-amt.pos { color: var(--success); }
.txn-amt.neg { color: var(--ink); }

.filter-pill,
.list-group-item {
    border-radius: 14px !important;
}

.nav-pills .nav-link,
.filter-pill {
    border-radius: 999px;
}

/* ---------- Add Transaction ---------- */

.toggle-row {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.toggle-option {
    flex: 1 1 0;
    text-align: center;
    padding: 9px 0;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ink-faint);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.toggle-row .btn-check:checked + .toggle-option-danger {
    background-color: var(--danger-soft);
    color: var(--danger);
}

.toggle-row .btn-check:checked + .toggle-option-success {
    background-color: var(--success-soft);
    color: var(--success);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.cat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 4px;
    border-radius: 13px;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
}

.cat-chip.sel {
    background: var(--accent-soft);
    border-color: var(--accent-line);
}

.cat-chip span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.cat-chip.sel span {
    color: var(--accent-deep);
}

.cat-chip .ic {
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cat-chip:has(input:checked) {
    background: var(--accent-soft);
    border-color: var(--accent-line);
}

.cat-chip:has(input:checked) .ic {
    color: var(--accent-deep);
}

.amount-entry {
    text-align: center;
    padding: 10px 0 4px;
}

.amount-entry .cur {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink-faint);
    vertical-align: top;
    margin-right: 4px;
}

.amount-entry input {
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none !important;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-align: center;
    width: 100%;
    font-variant-numeric: tabular-nums;
    -moz-appearance: textfield;
}

.amount-entry input::-webkit-outer-spin-button,
.amount-entry input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 14px;
}

.field-row .fl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    flex-shrink: 0;
}

.field-row .fl .ic {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.field-row select,
.field-row input {
    border: none;
    background: transparent;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    outline: none;
    box-shadow: none !important;
    width: 100%;
    font-family: inherit;
}

.field-row select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 20px;
    text-overflow: ellipsis;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236B6478' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    cursor: pointer;
}

.wallet-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 28px -10px rgba(30, 27, 46, 0.22);
    padding: 6px;
    max-height: 260px;
    overflow-y: auto;
}

.wallet-dropdown-option {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
}

.wallet-dropdown-option:hover {
    background: var(--ground);
}

.wallet-dropdown-option.sel {
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-weight: 700;
}

/* ---------- Budgets ---------- */

.budget-track {
    height: 7px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.budget-track > .budget-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
}

.budget-pct.text-success { color: var(--success) !important; }
.budget-pct.text-warning { color: var(--warning) !important; }
.budget-pct.text-danger { color: var(--danger) !important; }

.progress-bar.bg-success,
.budget-fill.bg-success { background-color: var(--success) !important; }
.progress-bar.bg-warning,
.budget-fill.bg-warning { background-color: var(--warning) !important; }
.progress-bar.bg-danger,
.budget-fill.bg-danger { background-color: var(--danger) !important; }

.progress {
    border-radius: 999px;
    background-color: var(--border);
}

/* ---------- Bottom nav (mobile only) ---------- */

.bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--fw-bottom-nav-height);
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    z-index: 1030;
    padding-bottom: 10px;
}

@media (min-width: 992px) {
    .bottom-nav {
        display: none;
    }
}

.bottom-nav .bottom-nav-link {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--ink-faint);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
}

.bottom-nav .bottom-nav-link.active {
    color: var(--accent);
}

.bottom-nav .bottom-nav-link i {
    font-size: 1.1rem;
}

.bottom-nav .bottom-nav-add {
    color: #fff;
}

.bottom-nav .bottom-nav-add i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 14px;
    font-size: 1.3rem;
    margin-top: -26px;
    box-shadow: 0 8px 18px -6px rgba(124, 58, 237, 0.6);
}

.bottom-nav .bottom-nav-add span {
    margin-top: 2px;
}

/* ---------- Sidebar nav (desktop only) ---------- */

.sidebar-brand {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    color: var(--ink) !important;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    color: var(--ink-soft);
    text-decoration: none;
    border-radius: 12px;
}

.sidebar-link:hover {
    background-color: var(--accent-soft);
    color: var(--accent-deep);
}

.sidebar-link.active {
    background-color: var(--accent-soft);
    color: var(--accent-deep);
    font-weight: 700;
}

/* ---------- Form controls (app-wide) ---------- */

.form-control,
.form-select {
    background-color: var(--surface);
    border: 1px solid var(--border);
    color: var(--ink);
    border-radius: 12px;
    padding: 0.6rem 0.85rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem var(--accent-soft);
    background-color: var(--surface);
    color: var(--ink);
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem var(--accent-soft);
}

/* ---------- Auth shell (login / register) ---------- */

.auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(120% 140% at 15% 0%, #a78bfa 0%, #7c3aed 42%, #4c1d95 75%, #221046 100%);
}

.auth-shell::before,
.auth-shell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.auth-shell::before {
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.14);
    top: -160px;
    left: -120px;
}

.auth-shell::after {
    width: 320px;
    height: 320px;
    background: rgba(76, 29, 149, 0.35);
    bottom: -140px;
    right: -100px;
}

.auth-wrap {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.brand-mark .brand-glyph {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    backdrop-filter: blur(6px);
    flex-shrink: 0;
}

.brand-mark .brand-word {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.auth-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 22px;
    box-shadow: 0 24px 60px -20px rgba(20, 8, 46, 0.55);
    padding: 28px 26px;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    color: #fff;
}

.auth-card h1 {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 4px;
    color: #fff;
}

.auth-card .auth-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    margin-bottom: 22px;
}

.auth-card .form-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
}

.auth-card .form-control,
.auth-card .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
}

.auth-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.auth-card .form-control:focus,
.auth-card .form-select:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.18);
    color: #fff;
}

.auth-card .form-check-label,
.auth-card .form-text {
    color: rgba(255, 255, 255, 0.75);
}

.auth-card .btn-primary {
    width: 100%;
    padding: 0.65rem 1rem;
    font-weight: 700;
    background: #fff;
    border-color: #fff;
    color: var(--accent-deep);
}

.auth-card .btn-primary:hover,
.auth-card .btn-primary:focus {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.88);
    color: var(--accent-deep);
}

.auth-card a:not(.btn) {
    color: rgba(255, 255, 255, 0.85);
}

.auth-card hr {
    border-color: rgba(255, 255, 255, 0.25);
}

.auth-foot {
    text-align: center;
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.auth-foot a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.auth-card .radio-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}

.auth-card .radio-card:has(input:checked) {
    background: rgba(255, 255, 255, 0.22);
    border-color: #fff;
}

.auth-card .radio-card span {
    color: #fff;
}

/* App Lock: OTP-style passcode entry — bordered boxes showing each typed
   digit, backed by a single real (but visually hidden) text input so
   mobile numeric keyboards and paste-from-SMS autofill still work. */
.pin-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    cursor: text;
}

.pin-box {
    width: 42px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.pin-box.filled {
    background: rgba(255, 255, 255, 0.18);
}

.pin-box.active {
    border-color: #fff;
}

.pin-hidden-input {
    position: absolute;
    opacity: 0;
    height: 1px;
    width: 1px;
    pointer-events: none;
}

/* Registration: family-choice radio cards */

.radio-card-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    background: var(--surface);
}

.radio-card:has(input:checked) {
    border-color: var(--accent-line);
    background: var(--accent-soft);
}

.radio-card input {
    accent-color: var(--accent);
    flex-shrink: 0;
}

.radio-card span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}

/* ---------- Welcome / marketing page ---------- */

.welcome-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ground);
    padding: 40px 20px;
}

.welcome-shell .welcome-inner {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.welcome-shell h1 {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 5vw, 2.3rem);
    letter-spacing: -0.01em;
    margin: 20px 0 10px;
    text-wrap: balance;
}

.welcome-shell p.lead {
    color: var(--ink-soft);
    font-size: 1rem;
    margin-bottom: 28px;
}

.welcome-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.welcome-cta .btn {
    padding: 0.65rem 1.6rem;
    font-weight: 700;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: left;
}

.welcome-feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 12px;
}

.welcome-feature .wallet-glyph {
    margin-bottom: 8px;
}

.welcome-feature .ft-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.welcome-feature .ft-body {
    font-size: 0.72rem;
    color: var(--ink-faint);
    line-height: 1.4;
}

@media (max-width: 420px) {
    .welcome-features {
        grid-template-columns: 1fr;
    }
}

/* ---------- Avatar chip / icon buttons ---------- */

.avatar-chip {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--accent-deep);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: "Sora", sans-serif;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
