/* =================================================================
   HomeLedger – app.css
   Bootstrap 5 design system — no AdminLTE dependency
   ================================================================= */

/* 1 ── Design tokens (mobile-first: base values target smartphones) */
:root {
    --hl-navy: #0b2035;
    --hl-navy-soft: #14304a;
    --hl-green: #2fa24d;
    --hl-green-hover: #239044;
    --hl-green-soft: rgba(47, 162, 77, 0.10);
    --hl-mint: #dcecdf;
    --hl-surface: #f6fbf7;
    --hl-border: rgba(11, 32, 53, 0.08);
    --hl-text: #13283d;
    --hl-text-muted: #6b7280;
    --hl-ease: cubic-bezier(.2, .8, .2, 1);
    --hl-dur: 220ms;
    --hl-sidebar-w: 220px;
    --hl-topbar-h: 52px;
    --hl-bottomnav-h: 64px;
    /* SIP-036: typography scale — mobile base */
    --hl-font-size-base: 16px;
    --hl-font-size-small: 15px;
    --hl-font-size-title: 26px;
    --hl-font-size-card-title: 20px;
    --hl-font-size-amount: 24px;
    /* SIP-036: touch targets */
    --hl-touch-target: 44px;
    --hl-bottomnav-item-h: 56px;
    /* SIP-036: safe area (iOS notch / gesture bar) */
    --hl-safe-bottom: env(safe-area-inset-bottom, 0px);
    --hl-safe-top: env(safe-area-inset-top, 0px);
}

/* Desktop/tablet: denser typography (desktop extends mobile, not the opposite) */
@media (min-width: 992px) {
    :root {
        --hl-font-size-base: 14px;
        --hl-font-size-small: 13px;
        --hl-font-size-title: 22px;
        --hl-font-size-card-title: 17px;
        --hl-font-size-amount: 20px;
        --hl-touch-target: 34px;
    }
}

/* 2 ── Base */
html, body { height: 100%; width: 100%; font-size: var(--hl-font-size-base); }
body {
    background: linear-gradient(180deg, #eef5ef 0%, #f8fbf8 100%);
    color: var(--hl-text);
}

/* SIP-036: page titles readable on mobile */
h1, .h1 { font-size: var(--hl-font-size-title); }
h1.h4, h4.mb-0, .h4 { font-size: calc(var(--hl-font-size-title) - 4px); }
.text-muted, small, .small { font-size: var(--hl-font-size-small); }
.hl-amount { font-size: var(--hl-font-size-amount); font-weight: 700; }

/* 3 ── App shell layout */
.app-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Topbar */
.app-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    height: var(--hl-topbar-h);
    background: rgba(11, 32, 53, 0.96);
    border-bottom: 1px solid rgba(72, 185, 103, 0.16);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
}
.app-topbar .app-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(238, 248, 239, 0.92);
    font-weight: 600;
    font-size: 0.95rem;
}
.app-topbar .app-logo img { height: 28px; border-radius: 6px; }
.app-topbar .app-topbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.app-topbar .nav-link {
    color: rgba(238, 248, 239, 0.85) !important;
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    transition: background var(--hl-dur) var(--hl-ease);
}
.app-topbar .nav-link:hover { background: rgba(255,255,255,0.10); }
.app-topbar .dropdown-menu {
    background: #0f2a40;
    border: 1px solid rgba(72,185,103,0.18);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.app-topbar .dropdown-item { color: rgba(238,248,239,0.85); font-size: 0.875rem; }
.app-topbar .dropdown-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.app-topbar .dropdown-divider { border-color: rgba(255,255,255,0.12); }

/* Body row (sidebar + main) */
.app-body-row {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* Sidebar */
.app-sidebar {
    width: var(--hl-sidebar-w);
    flex-shrink: 0;
    background: linear-gradient(180deg, #0b2035 0%, #132f49 100%);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: var(--hl-topbar-h);
    height: calc(100vh - var(--hl-topbar-h));
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.app-sidebar__brand {
    padding: 1rem 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(95, 207, 127, 0.10);
    margin-bottom: 0.25rem;
}
.app-sidebar__nav { padding: 0.25rem 0.5rem; }
.app-sidebar .nav-link {
    color: rgba(238, 248, 239, 0.80);
    border-radius: 10px;
    padding: 0.45rem 0.75rem;
    margin-bottom: 2px;
    transition: background var(--hl-dur) var(--hl-ease), color var(--hl-dur) var(--hl-ease);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.875rem;
}
.app-sidebar .nav-link i { width: 1.1rem; text-align: center; opacity: 0.85; }
.app-sidebar .nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.app-sidebar .nav-link.active {
    background: linear-gradient(135deg, #279746, #40b760);
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(39,151,70,0.22);
}
.app-sidebar .nav-link.active i { opacity: 1; }

/* Sidebar submenu */
.app-sidebar .sidebar-submenu { padding-left: 1.5rem; }
.app-sidebar .sidebar-submenu .nav-link {
    font-size: 0.83rem;
    padding: 0.35rem 0.65rem;
    color: rgba(238,248,239,0.68);
}
.app-sidebar .sidebar-submenu .nav-link.active {
    background: rgba(47,162,77,0.18);
    color: #6ee89a !important;
    box-shadow: none;
}
.sidebar-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    padding: 0.6rem 0.75rem 0.2rem;
    margin-top: 0.25rem;
}

/* Sidebar collapse toggle arrow */
.sidebar-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    transition: transform 0.2s;
}
.nav-link[aria-expanded="true"] .sidebar-arrow { transform: rotate(90deg); }

/* Main content area (bottom padding covers bottom nav + safe area) */
.app-main {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.25rem calc(var(--hl-bottomnav-h) + var(--hl-safe-bottom) + 1.25rem);
}
@media (max-width: 575.98px) {
    .app-main { padding-left: 0.85rem; padding-right: 0.85rem; }
}
/* App shell respects top safe area (standalone PWA) */
.app-shell { padding-top: var(--hl-safe-top); }

/* Footer */
.app-footer {
    background: rgba(247,251,248,0.92);
    border-top: 1px solid var(--hl-border);
    padding: 0.5rem 1.25rem;
    font-size: 0.78rem;
    color: var(--hl-text-muted);
}
@media (max-width: 991.98px) { .app-footer { display: none !important; } }

/* 4 ── Breadcrumb */
.app-breadcrumb {
    margin-bottom: 0.75rem;
    padding: 0;
}
.breadcrumb-item.active { color: var(--hl-navy); }
.breadcrumb-item a:hover { color: #1f8340; }

/* 5 ── Cards */
.card, .modal-content {
    border-radius: 14px;
    border: 1px solid var(--hl-border);
    box-shadow: 0 14px 36px rgba(11, 32, 53, 0.06);
}
.card:not(.card-outline) { background: rgba(255, 255, 255, 0.94); }
.card-header {
    background: rgba(247, 251, 248, 0.92);
    border-bottom: 1px solid var(--hl-border);
    border-radius: 14px 14px 0 0 !important;
}
.card-header:only-child { border-bottom: none; }
.card-title {
    font-weight: 700;
    font-size: var(--hl-font-size-card-title);
    color: var(--hl-navy);
}

/* SIP-036: generous card spacing and padding on mobile */
@media (max-width: 991.98px) {
    .card { margin-bottom: 1rem; }
    .card-body { padding: 1.1rem 1rem; }
    .card-header { padding: 0.85rem 1rem; }
}

/* 6 ── Buttons */
.btn {
    transition: transform var(--hl-dur) var(--hl-ease),
                box-shadow var(--hl-dur) var(--hl-ease),
                background-color var(--hl-dur) var(--hl-ease);
}
/* SIP-036: touch targets — buttons at least 44px tall on mobile.
   gap: flex containers drop whitespace-only text nodes, so icon/label
   spacing must come from gap, not from literal spaces in the markup. */
@media (max-width: 991.98px) {
    .btn {
        min-height: var(--hl-touch-target);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        font-size: var(--hl-font-size-base);
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }
    .btn-sm {
        min-height: 40px;
        font-size: var(--hl-font-size-small);
    }
    /* icons with me-1/me-2 would double up with the flex gap */
    .btn > i.me-1, .btn > i.me-2,
    .btn > svg.me-1, .btn > svg.me-2 { margin-right: 0 !important; }
    /* inline table/icon-only actions keep compact but tappable */
    td .btn-sm, .btn-group-sm > .btn { min-height: 38px; min-width: 38px; }
}
@media (hover: hover) {
    .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 16px rgba(17, 24, 39, 0.10);
    }
}
.btn-primary, .bg-primary {
    background: linear-gradient(135deg, #279746, #42bb63) !important;
    border-color: #279746 !important;
    color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, #207d3a, #37a456) !important;
    border-color: #207d3a !important;
    color: #fff !important;
}
.btn-success {
    background-color: #15803d !important;
    border-color: #15803d !important;
    color: #fff !important;
}
.btn-success:hover, .btn-success:focus {
    background-color: #116b33 !important;
    border-color: #116b33 !important;
    color: #fff !important;
}
.btn-danger {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
    color: #fff !important;
}
.btn-danger:hover, .btn-danger:focus {
    background-color: #b91c1c !important;
    border-color: #b91c1c !important;
    color: #fff !important;
}
.btn-warning {
    background-color: #d97706 !important;
    border-color: #d97706 !important;
    color: #fff !important;
}
.btn-outline-primary {
    color: var(--hl-green-hover);
    border-color: rgba(35, 144, 68, 0.28);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: var(--hl-green-soft);
    color: var(--hl-green-hover);
    border-color: rgba(35, 144, 68, 0.38);
}
.btn-outline-secondary {
    color: var(--hl-text);
    border-color: rgba(11, 32, 53, 0.18);
}
.btn-outline-secondary:hover {
    background: rgba(11, 32, 53, 0.04);
    color: var(--hl-text);
}

/* 7 ── Links */
a, .page-link, .text-primary { color: #1f8340 !important; }
a:hover, .page-link:hover { color: #176530 !important; }

/* 8 ── Tables */
.table thead th {
    background: rgba(219, 234, 222, 0.46);
    color: #17314b;
    border-bottom: 1px solid var(--hl-border);
}
.table tbody tr:hover { background: rgba(47, 162, 77, 0.04); }
th a { color: #4b5563; }
.summary { color: var(--hl-navy) !important; padding-left: 13px; margin-bottom: 1.2rem; }

/* 9 ── Pagination */
.pagination .page-link,
ul.pagination a:link,
ul.pagination a:visited {
    border-color: var(--hl-border) !important;
    color: var(--hl-text) !important;
    border-radius: 10px;
    font-size: small;
    font-weight: bold;
    padding: 3px 9px;
    text-decoration: none;
}
.page-item.active .page-link,
ul.pagination li.active,
ul.pagination .selected a,
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.badge-primary {
    background-color: var(--hl-green) !important;
    border-color: var(--hl-green) !important;
    color: #fff !important;
}
.pagination .page-link:hover,
ul.pagination a:hover {
    background: var(--hl-green-soft) !important;
    border-color: rgba(35, 144, 68, 0.35) !important;
}
ul.pagination { font-size: small; border: 0; margin: 0; padding: 0; line-height: 100%; }
ul.pagination li { display: inline; line-height: 2.5rem; background-color: transparent; }
ul.pagination .disabled a,
ul.pagination .disabled span {
    border: solid 1px #dedede;
    color: #888;
    cursor: default;
    padding: 8px 9px;
}

/* 10 ── Forms */
select.form-control {
    appearance: auto;
    -webkit-appearance: menulist;
    padding-right: 2rem;
}
.form-control:focus, .form-select:focus {
    border-color: rgba(44, 164, 76, 0.48);
    box-shadow: 0 0 0 .2rem rgba(44, 164, 76, 0.10);
}
.form-control:disabled, .form-select:disabled {
    background-color: #e9ecef !important;
    color: var(--hl-text-muted) !important;
}
label { color: var(--hl-navy); }
.form-group { margin-bottom: 1rem; }
.help-block { color: #c55; font-size: var(--hl-font-size-small); }
::placeholder { color: #9ca3af; }

/* SIP-036: mobile form ergonomics — tall inputs, 16px font (prevents iOS auto-zoom) */
@media (max-width: 991.98px) {
    .form-control, .form-select {
        min-height: var(--hl-touch-target);
        font-size: var(--hl-font-size-base);
    }
    textarea.form-control { min-height: calc(var(--hl-touch-target) * 2); }
    .form-label, label { font-size: var(--hl-font-size-base); }
    .input-group .btn { min-width: var(--hl-touch-target); }
    .form-check-input { width: 1.35em; height: 1.35em; }
}

/* 11 ── Badges */
.badge.bg-primary, .badge-primary { background-color: var(--hl-green) !important; }

/* 12 ── Alerts */
.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* 13 ── Modals */
.modal-backdrop { background-color: rgba(17, 24, 39, 0.55); backdrop-filter: blur(4px); }
.modal-backdrop.show { opacity: 1; }
.modal-open { overflow: hidden; }
.modal-dialog { margin-top: 64px; }
@media (max-width: 576px) { .modal-dialog { margin: 26px auto; } }

/* 14 ── Datepicker z-index fix */
.datepicker { z-index: 1500 !important; }

/* 15 ── Grid view */
.grid-view { background-color: transparent; }
.grid-view th { white-space: nowrap; }
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0; height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}
a.asc:after { border-bottom: solid 7px #212529; border-top-width: 0; }
a.desc:after { border-top: solid 7px #212529; border-bottom-width: 0; }

/* 16 ── Mobile bottom nav (SIP-036: 5 main actions on mobile, safe-area aware) */
.mobile-bottom-nav {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1040;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(95, 207, 127, 0.16);
    background: #0b2035;
    padding-bottom: var(--hl-safe-bottom);
}
/* Categories/Users: desktop-only items (mobile reaches them via Profile hub).
   Higher specificity than .mobile-bottom-nav__item below, which sets display. */
.mobile-bottom-nav .mobile-bottom-nav__item--desktop { display: none; }
@media (min-width: 992px) {
    .mobile-bottom-nav {
        grid-template-columns: repeat(var(--desktop-nav-items, 5), minmax(0, 1fr));
    }
    .mobile-bottom-nav .mobile-bottom-nav__item--desktop { display: inline-flex; }
}
.mobile-bottom-nav__item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-height: var(--hl-bottomnav-item-h);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    line-height: 1;
    text-decoration: none;
    font-weight: 500;
}
.mobile-bottom-nav__item i { font-size: 1.25rem !important; }
.mobile-bottom-nav__item,
.mobile-bottom-nav__item:link,
.mobile-bottom-nav__item:visited,
.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item:active {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    transform: none !important;
    box-shadow: none !important;
}
.mobile-bottom-nav__item.is-active,
.mobile-bottom-nav__item.is-active:link,
.mobile-bottom-nav__item.is-active:visited { color: #6ee89a !important; }
.mobile-bottom-nav__item:hover { color: #fff !important; }

/* 17 ── Dashboard mobile items (SIP-036: generous padding, readable) */
.dashboard-mobile-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.75rem;
    background-color: rgba(255, 255, 255, 0.85);
    font-size: var(--hl-font-size-base);
}

/* 17b ── Report mobile lists (SIP-036: dense tables become cards on mobile) */
.report-mobile-group {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.75rem;
    background-color: rgba(255, 255, 255, 0.85);
}
.report-mobile-group__title {
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--hl-navy);
}
.report-mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: var(--hl-font-size-small);
}
.report-mobile-row + .report-mobile-row { border-top: 1px solid rgba(0, 0, 0, 0.05); }
.report-mobile-row__total {
    font-weight: 700;
    white-space: nowrap;
}
/* Expandable monthly detail (native <details>, no JS) */
.report-mobile-details { border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.report-mobile-details:last-child { border-bottom: none; }
.report-mobile-details > summary { list-style: none; cursor: pointer; }
.report-mobile-details > summary::-webkit-details-marker { display: none; }
.report-mobile-details > summary > span:first-child::before {
    content: '\25B8';
    display: inline-block;
    margin-right: 0.4rem;
    color: var(--hl-text-muted);
    transition: transform var(--hl-dur) var(--hl-ease);
}
.report-mobile-details[open] > summary > span:first-child::before {
    transform: rotate(90deg);
}
.report-mobile-details__body {
    padding: 0.15rem 0 0.5rem 1.1rem;
}

[data-bs-theme="dark"] .report-mobile-group {
    background-color: rgba(30,34,40,0.92);
    border-color: rgba(255,255,255,0.08);
}
[data-bs-theme="dark"] .report-mobile-group__title { color: #e5e7eb; }
[data-bs-theme="dark"] .report-mobile-row + .report-mobile-row { border-color: rgba(255,255,255,0.06); }
[data-bs-theme="dark"] .report-mobile-details { border-color: rgba(255,255,255,0.06); }

/* 18 ── Grid cell click (transactions) */
.grid-cell-btn-td { cursor: pointer; }

/* 19 ── Misc */
.not-set { color: #c55; font-style: italic; }
.single-line {
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.multiselect-native-select > .btn-group { width: 100% !important; }
.progress { height: 2px; background-color: rgba(0, 0, 0, .125); }
.progress-bar { background-color: var(--hl-green); }

/* 20 ── Form check (BS5) */
.custom-control-input:checked ~ .custom-control-label::before,
.form-check-input:checked {
    background-color: var(--hl-green) !important;
    border-color: var(--hl-green) !important;
}

/* 21 ── Dark mode (Bootstrap 5 data-bs-theme="dark") */
[data-bs-theme="dark"] {
    --hl-surface: #1a1d21;
    --hl-surface-alt: #212529;
    --hl-text: #e5e7eb;
    --hl-text-muted: #9ca3af;
    --hl-border: rgba(255,255,255,0.08);
    color-scheme: dark;
}
[data-bs-theme="dark"] body {
    background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
    color: var(--hl-text);
}
[data-bs-theme="dark"] .card:not(.card-outline) {
    background: rgba(30, 34, 40, 0.96);
    border-color: rgba(255,255,255,0.08);
}
[data-bs-theme="dark"] .card-header {
    background: rgba(25,29,35,0.95);
    border-color: rgba(255,255,255,0.08);
}
[data-bs-theme="dark"] .card-title { color: #e5e7eb; }
[data-bs-theme="dark"] label { color: #d1d5db; }
[data-bs-theme="dark"] .table thead th {
    background: rgba(30,50,40,0.6);
    color: #81b8f3;
}
[data-bs-theme="dark"] .table thead th a { color: #96c1ec !important; }
[data-bs-theme="dark"] .table tbody th,
[data-bs-theme="dark"] .table tbody td { color: #ced4da !important; }
[data-bs-theme="dark"] .table tbody tr:hover { background: rgba(47,162,77,0.07); }
[data-bs-theme="dark"] .summary { color: #d1d5db !important; }
[data-bs-theme="dark"] .app-topbar {
    background: rgba(10,16,24,0.98);
}
[data-bs-theme="dark"] .app-sidebar {
    background: linear-gradient(180deg, #080f1a 0%, #0d1926 100%);
}
[data-bs-theme="dark"] .dashboard-mobile-item {
    background-color: rgba(30,34,40,0.92);
    border-color: rgba(255,255,255,0.08);
}
[data-bs-theme="dark"] .app-footer {
    background: rgba(20,24,30,0.95);
    border-color: rgba(255,255,255,0.08);
    color: var(--hl-text-muted);
}
[data-bs-theme="dark"] input:-webkit-autofill,
[data-bs-theme="dark"] input:-webkit-autofill:focus,
[data-bs-theme="dark"] select:-webkit-autofill,
[data-bs-theme="dark"] textarea:-webkit-autofill {
    -webkit-text-fill-color: #333 !important;
}

/* 22 ── Scrollbars (webkit) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(107, 114, 128, 0.35); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(107, 114, 128, 0.55); }

/* 23 ── Focus accessibility */
:where(a, button, input, select, textarea, .btn, .nav-link):focus { outline: none; }
:where(a, button, input, select, textarea, .btn, .nav-link):focus-visible {
    box-shadow: 0 0 0 4px rgba(47, 162, 77, 0.25);
    border-radius: 10px;
}

/* 24 ── Transaction author badge */
.tx-author-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 0;
    flex-shrink: 0;
}
.tx-author-own {
    background: rgba(47, 162, 77, 0.15);
    color: var(--hl-green, #2fa24d);
    border: 1px solid rgba(47, 162, 77, 0.3);
}
.tx-author-other {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.25);
}
[data-bs-theme="dark"] .tx-author-own {
    background: rgba(47, 162, 77, 0.22);
    color: #5de07a;
}
[data-bs-theme="dark"] .tx-author-other {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}
