/* ============================================
   ليان - Page-Specific Styles
   ============================================ */

/* ============================================
   Login Page
   ============================================ */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 30%, #fbcfe8 60%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
    padding: var(--space-4);
}

.login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.login-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.login-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: var(--space-12) var(--space-10);
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-logo {
    text-align: center;
    margin-bottom: var(--space-8);
}

.login-logo .logo-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
    color: white;
    border-radius: var(--border-radius-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 36px;
    margin-bottom: var(--space-4);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.login-logo h1 {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-logo p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-top: var(--space-1);
}

.login-error {
    background: var(--danger-light);
    color: var(--danger);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    display: none;
    text-align: center;
}

.login-error.show {
    display: block;
    animation: slideUp 0.3s ease;
}

/* ============================================
   Dashboard Layout
   ============================================ */
.dashboard {
    padding: var(--space-8);
    max-width: 1400px;
    margin: 0 auto;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-header {
    margin-bottom: var(--space-8);
}

.dashboard-header h1 {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    margin-bottom: var(--space-1);
}

.dashboard-header p {
    color: var(--text-muted);
    font-size: var(--font-size-base);
}

/* ============================================
   Admin Page Specifics
   ============================================ */
.admin-tabs {
    margin-bottom: var(--space-6);
}

.user-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.user-area-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px var(--space-3);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    background: var(--primary-100);
    color: var(--primary-700);
}

/* ============================================
   Manager Page - Rep Cards
   ============================================ */
.rep-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition);
}

.rep-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.rep-card-header {
    padding: var(--space-5) var(--space-6);
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.rep-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.rep-card-body {
    padding: var(--space-5) var(--space-6);
}

.rep-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    font-size: var(--font-size-sm);
}

.rep-stat-row:not(:last-child) {
    border-bottom: 1px solid var(--gray-100);
}

.rep-stat-label {
    color: var(--text-muted);
}

.rep-stat-value {
    font-weight: 700;
}

/* ============================================
   Rep Page - Area Selection
   ============================================ */
.area-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.area-chip {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--bg-card);
    user-select: none;
}

.area-chip:hover {
    border-color: var(--primary-300);
    background: var(--primary-50);
}

.area-chip.selected {
    border-color: var(--primary-500);
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.area-chip-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.area-chip.selected .area-chip-check {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
    font-size: 12px;
}

.area-chip-name {
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* ============================================
   Visit Card
   ============================================ */
.visit-log-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-100);
}

.visit-log-item:last-child {
    border-bottom: none;
}

.visit-date {
    background: var(--primary-50);
    border-radius: var(--border-radius-sm);
    padding: var(--space-2) var(--space-3);
    text-align: center;
    min-width: 64px;
    flex-shrink: 0;
}

.visit-date .day {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--primary-600);
    line-height: 1;
}

.visit-date .month {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-weight: 600;
}

.visit-info {
    flex: 1;
}

.visit-info h4 {
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.visit-info .visit-details {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-top: var(--space-1);
}

/* ============================================
   Upload Zone
   ============================================ */
.upload-zone {
    border: 3px dashed var(--gray-300);
    border-radius: var(--border-radius-lg);
    padding: var(--space-12) var(--space-8);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg-light);
    margin-top: var(--space-4);
}

.upload-zone:hover {
    border-color: var(--primary-400);
    background: var(--primary-50);
}

.upload-zone.drag-over {
    border-color: var(--primary-500);
    background: var(--primary-100);
    transform: scale(1.01);
}

.upload-icon {
    font-size: 48px;
    margin-bottom: var(--space-3);
}

/* ============================================
   Accounting Page
   ============================================ */
.nav-acct-btn {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100)) !important;
    border: 1px solid var(--primary-200) !important;
    color: var(--primary-700) !important;
    font-weight: 600 !important;
    transition: all 0.2s ease;
}

.nav-acct-btn:hover,
.nav-acct-btn.active {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600)) !important;
    color: white !important;
    border-color: var(--primary-500) !important;
}

.acct-budget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.acct-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
}

.acct-summary-row:last-child {
    border-bottom: none;
}

.acct-subtotal {
    font-weight: 700;
    background: var(--gray-50);
    padding: 10px 12px;
    border-radius: 8px;
    margin: 4px -12px;
}

.acct-total {
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 10px;
    margin: 8px -12px 0;
}

.acct-profit {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.acct-loss {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.acct-amount {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.acct-green {
    color: #16a34a;
}

.acct-red {
    color: #ef4444;
}

.acct-gold {
    color: #ca8a04;
}

/* Chart */
.acct-chart {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 200px;
    padding: 0 8px;
}

.acct-chart-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.acct-bars {
    flex: 1;
    width: 100%;
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.acct-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    transition: height 0.5s ease;
    cursor: pointer;
}

.acct-bar:hover {
    opacity: 0.8;
}

.acct-bar-green {
    background: linear-gradient(180deg, #22c55e, #16a34a);
}

.acct-bar-red {
    background: linear-gradient(180deg, #f87171, #ef4444);
}

.acct-bar-gold {
    background: linear-gradient(180deg, #fbbf24, #eab308);
}

.acct-chart-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-align: center;
    font-weight: 600;
}

.acct-chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.acct-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Expense Bars */
.acct-expense-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.acct-expense-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.acct-expense-cat {
    font-weight: 600;
    color: var(--text-primary);
}

.acct-expense-amt {
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.acct-expense-track {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.acct-expense-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Point Statement Summary */
.acct-point-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.acct-ps-item {
    background: var(--gray-50);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.acct-ps-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.acct-ps-value {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Cash Register Stats */
.acct-cash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.acct-cash-stat {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.acct-cash-in {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.acct-cash-out {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.acct-cash-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.acct-cash-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.acct-cash-in .acct-cash-stat-value {
    color: #16a34a;
}

.acct-cash-out .acct-cash-stat-value {
    color: #ef4444;
}

.btn-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-success:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* F4 Autocomplete Dropdown */
.f4-autocomplete {
    background: white;
    border: 2px solid var(--primary-300);
    border-radius: 8px;
    max-height: 240px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: f4SlideDown 0.15s ease;
}

@keyframes f4SlideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.f4-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-50);
    transition: background 0.1s;
    text-align: right;
}

.f4-item:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

.f4-item:last-child {
    border-bottom: none;
}

.f4-hint {
    display: inline-block;
    background: var(--gray-100);
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 1px 6px;
    border-radius: 3px;
    margin-right: 4px;
    font-weight: 600;
}

/* Professional Invoice Form */
.inv-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--gray-50);
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
}

.inv-header .form-group {
    margin-bottom: 8px;
}

.inv-header label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 2px;
    display: block;
}

.inv-header .form-control {
    padding: 6px 10px;
    font-size: 0.85rem;
}

/* Invoice Items Table */
.inv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.inv-table th {
    background: linear-gradient(135deg, #1e3a5f, #2d5a87);
    color: white;
    padding: 8px 6px;
    font-weight: 600;
    text-align: center;
    font-size: 0.78rem;
    white-space: nowrap;
}

.inv-table td {
    padding: 4px 4px;
    border: 1px solid var(--gray-200);
    text-align: center;
    vertical-align: middle;
}

.inv-table td input,
.inv-table td select {
    border: none;
    background: transparent;
    text-align: center;
    width: 100%;
    padding: 4px 2px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
}

.inv-table td input:focus {
    background: #fffde7;
}

.inv-table tr:nth-child(even) {
    background: var(--gray-50);
}

.inv-table tr:hover {
    background: #e8f4fd;
}

.inv-table .row-num {
    width: 30px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--gray-50);
}

.inv-table .mat-col {
    min-width: 180px;
    text-align: right;
}

.inv-table .mat-col input {
    text-align: right;
}

.inv-table .num-col {
    width: 70px;
}

.inv-table .val-col {
    width: 90px;
    font-weight: 700;
}

/* Invoice Footer */
.inv-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f0f9ff, #e8f4fd);
    border: 2px solid #2d5a87;
    border-radius: 8px;
    margin-top: 12px;
}

.inv-footer-label {
    font-weight: 700;
    color: #1e3a5f;
    font-size: 1.1rem;
}

.inv-footer-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e3a5f;
}

/* Journal Entry */
.journal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.journal-table th {
    background: linear-gradient(135deg, #1e3a5f, #2d5a87);
    color: white;
    padding: 8px 10px;
    font-weight: 600;
    text-align: center;
}

.journal-table td {
    padding: 6px 6px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.journal-table td input {
    border: none;
    background: transparent;
    text-align: center;
    width: 100%;
    padding: 4px;
    font-family: inherit;
    font-size: 0.85rem;
}

.journal-table td input:focus {
    background: #fffde7;
}

.journal-debit {
    color: #dc2626;
    font-weight: 700;
}

.journal-credit {
    color: #16a34a;
    font-weight: 700;
}

/* Account Statement Filters */
.stmt-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    margin-bottom: 16px;
}

.stmt-filters .form-group {
    margin-bottom: 0;
}

.stmt-filters label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-700);
}

/* ============================================
   البيان Style - Sidebar Layout
   ============================================ */
.acct-layout {
    display: flex;
    min-height: calc(100vh - 60px);
    direction: rtl;
}

.acct-sidebar {
    width: 220px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 2px solid #dee2e6;
    flex-shrink: 0;
    padding: 0;
    overflow-y: auto;
}

.acct-sidebar-title {
    background: linear-gradient(135deg, #1e3a5f, #2d5a87);
    color: white;
    text-align: center;
    padding: 14px 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.acct-sidebar-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #dee2e6;
    background: transparent;
    color: #1e3a5f;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
    transition: all 0.15s ease;
    font-family: inherit;
}

.acct-sidebar-btn:hover {
    background: #d4edff;
    color: #1e3a5f;
    padding-right: 22px;
}

.acct-sidebar-btn.active {
    background: linear-gradient(135deg, #1e3a5f, #2d5a87);
    color: white;
    font-weight: 700;
}

.acct-sidebar-btn .sidebar-icon {
    margin-left: 6px;
    font-size: 1rem;
}

.acct-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.acct-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #dfe6ed, #c8d3df);
    border-bottom: 1px solid #b0bec5;
    flex-wrap: wrap;
}

.acct-toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border: 1px solid #90a4ae;
    border-radius: 4px;
    background: linear-gradient(180deg, #fff 0%, #e8edf2 100%);
    color: #37474f;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.1s;
}

.acct-toolbar-btn:hover {
    background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #1e88e5;
    color: #0d47a1;
}

.acct-toolbar-sep {
    width: 1px;
    height: 24px;
    background: #90a4ae;
    margin: 0 4px;
}

.acct-content {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f0f2f5;
}

.acct-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 12px;
    background: linear-gradient(135deg, #1e3a5f, #2d5a87);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
}

.acct-statusbar span {
    direction: ltr;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .login-card {
        padding: var(--space-8) var(--space-6);
    }

    .login-logo .logo-large {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .login-logo h1 {
        font-size: var(--font-size-2xl);
    }

    .dashboard {
        padding: var(--space-4);
    }

    .dashboard-header h1 {
        font-size: var(--font-size-2xl);
    }

    .area-selector {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .acct-budget-grid {
        grid-template-columns: 1fr;
    }

    .acct-cash-stats {
        grid-template-columns: 1fr;
    }

    .inv-header {
        grid-template-columns: 1fr;
    }

    .stmt-filters {
        grid-template-columns: 1fr;
    }

    .inv-table {
        font-size: 0.75rem;
    }

    .acct-layout {
        flex-direction: column;
    }

    .acct-sidebar {
        width: 100%;
        border-left: none;
        border-bottom: 2px solid #dee2e6;
        display: flex;
        flex-wrap: wrap;
    }

    .acct-sidebar-title {
        width: 100%;
        padding: 10px;
    }

    .acct-sidebar-btn {
        width: auto;
        flex: 1;
        min-width: 120px;
        text-align: center;
        padding: 8px 10px;
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .area-selector {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   ERP Accounting Engine — Journal & Reports
   ============================================ */
.journal-debit {
    color: #1e40af;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.journal-credit {
    color: #065f46;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.badge-gold {
    background: rgba(202, 138, 4, 0.12);
    color: #92400e;
    border: 1px solid rgba(202, 138, 4, 0.3);
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
}

.badge-pink {
    background: rgba(236, 72, 153, 0.1);
    color: #9d174d;
    border: 1px solid rgba(236, 72, 153, 0.2);
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
}

/* Trial Balance tfoot */
tfoot tr td {
    font-weight: 700;
    padding: 10px 6px;
    border-top: 2px solid var(--gray-300);
}

/* Balance Sheet grid responsive */
@media (max-width: 768px) {
    .balance-sheet-grid {
        grid-template-columns: 1fr;
    }
}