* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    background: #f0f3f7;
    color: #1a2639;
    line-height: 1.5;
    overflow-x: hidden;
}

.app {
    display: flex;
    min-height: 100vh;
    max-width: 1600px;
    margin: 0 auto;
    background: #f0f3f7;
}

.sidebar {
    width: 290px;
    height: 100vh;
    overflow-y: auto;
    background: white;
    padding: 28px 12px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    background: #1e3a8a;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.logo-text {
    font-weight: 700;
    font-size: 22px;
    color: #0b1e42;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    border-radius: 12px;
    color: #4a5a6e;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
    font-weight: 900;
}

.nav-item i {
    width: 20px;
    font-size: 1rem;
    color: #6d7b8c;
    text-align: center;
}

.nav-item:hover {
    background: #f8fafc;
    color: #1e3a8a;
}

.nav-item.active {
    background: #eef2ff;
    color: #1e3a8a;
    font-weight: 900;
}

.nav-item.active i {
    color: #1e3a8a;
}

/* .submenu { margin-left: 20px; margin-bottom: 10px; display: flex; flex-direction: column; gap: 2px; } */
.sub-item {
    padding: 8px 16px;
    border-radius: 10px;
    color: #556b82;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-item:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}

.sub-item.active {
    color: #1e3a8a;
    font-weight: 600;
    background: #f1f5f9;
}

.main {
    flex: 1;
    padding: 28px 32px;
    display: none;
}

.main.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.contract-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3f536b;
    font-size: 0.9rem;
    margin-top: 5px;
}

.contract-badge span {
    background: white;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid #dce3ec;
    font-weight: 600;
    color: #1e3a8a;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 8px 15px;
    border-radius: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.info-panel {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.info-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0b1e42;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.info-label {
    color: #64748b;
}

.info-value {
    font-weight: 600;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-secondary {
    background: #eef2ff;
    color: #1e3a8a;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
}

.btn-outline.active {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

.service-tag {
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-warning {
    background: #fef08a;
    color: #854d0e;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.text-danger {
    color: #ef4444 !important;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.info-panel {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.info-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0b1e42;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.info-label {
    color: #64748b;
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th {
    text-align: left;
    padding: 12px;
    color: #64748b;
    font-size: 0.85rem;
    border-bottom: 2px solid #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 14px 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #1a2639;
}

tr:hover td {
    background: #f8fafc;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;

    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 2400;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.filter-bar {
    display: flex;
    gap: 10px;
    background: white;
    padding: 12px;
    border-radius: 18px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-input {
    padding: 8px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.contract-strip {
    background: white;
    border-radius: 24px;
    padding: 15px 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.news-card {
    background: white;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    transition: 0.2s;
    cursor: pointer;
}

.news-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.btn-primary {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-secondary {
    background: #eef2ff;
    color: #1e3a8a;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    color: #4a5a6e;
}

.btn-outline:hover {
    border-color: #1e3a8a;
    color: #1e3a8a;
}

.btn-outline.active {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

.btn-small {
    padding: 4px 12px;
    font-size: 0.8rem;
}

.service-tag {
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-warning {
    background: #fef08a;
    color: #854d0e;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.text-danger {
    color: #ef4444 !important;
    font-weight: 600;
}

.text-success {
    color: #10b981 !important;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th {
    text-align: left;
    padding: 12px;
    color: #64748b;
    font-size: 0.85rem;
    border-bottom: 2px solid #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 14px 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #1a2639;
    vertical-align: middle;
}

tr:hover td {
    background: #f8fafc;
}

.filter-bar {
    display: flex;
    gap: 10px;
    background: white;
    padding: 12px;
    border-radius: 18px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-input {
    padding: 8px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* .modal {
    background: white;
    border-radius: 24px;
    width: 680px;
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 28px 28px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
} */

.modal::-webkit-scrollbar {
    width: 6px;
}

.modal::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #64748b;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 200px;
}

.form-group label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
    transition: 0.2s;
}

.form-control:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
}

.status-select {
    display: flex;
    gap: 10px;
}

.status-select2 {
    display: flex;
    gap: 10px;
    width: 500px;
}

.status-option {
    flex: 1;
    padding: 10px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s;
}

.status-option.green {
    background: #dcfce7;
    color: #166534;
}

.status-option.yellow {
    background: #fef08a;
    color: #854d0e;
}

.status-option.active {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.15);
}

.modal-line_of_credit {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.slider-block {
    margin-top: 20px;
}

.slider-label {
    font-weight: 500;
    color: #1e3a8a;
    margin-bottom: 10px;
    display: block;
}

.slider-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 10px;
}

#rangeSlider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    outline: none;
    margin-bottom: 15px;
}

#rangeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid #1e3a8a;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

#rangeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

#rangeSlider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid #1e3a8a;
    cursor: pointer;
}

.modal-top_up {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.slider-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: -5px;
    margin-bottom: 10px;
}

.type-select {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.type-btn {
    flex: 1;
    padding: 10px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    background: #f1f5f9;
    transition: 0.2s;
}

.type-btn.active {
    background: #1e3a8a;
    color: white;
}

.days-select {
    display: none;
    gap: 10px;
    margin-top: 10px;
}

.day-btn {
    flex: 1;
    padding: 10px;
    border-radius: 12px;
    background: #eef2ff;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
}

.day-btn.active {
    background: #1e3a8a;
    color: white;
}

.doc-select {
    display: flex;
    gap: 10px;
}

.doc-btn {
    flex: 1;
    padding: 10px;
    border-radius: 12px;
    background: #f1f5f9;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
}

.doc-btn.active {
    background: #1e3a8a;
    color: white;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: #1a2639;
    user-select: none;
}

.custom-checkbox input {
    display: none;
}

.mobile-menu-btn {
    display: none;
}

.sidebar-mobile {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, .97);

    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;

    transition: .4s;
}

.sidebar-mobile.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sidebar-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px;
    border-bottom: 1px solid #e2e8f0;

    background: white;
    position: sticky;
    top: 0;
    z-index: 2;
}
h1 {
    font-weight: 900;
}

.sidebar-mobile-close {
    width: 46px;
    height: 46px;

    border: none;
    border-radius: 14px;

    background: #eef2ff;
    color: #1e3a8a;

    cursor: pointer;
    font-size: 1.2rem;
}

.sidebar-mobile-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    background: white;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.custom-checkbox:hover .checkmark {
    border-color: #3b82f6;
}

.custom-checkbox input:checked+.checkmark {
    background: #1e3a8a;
    border-color: #1e3a8a;
}

.custom-checkbox input:checked+.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.limits-settings-block {
    transition: all 0.25s ease;
}

.limits-settings-block.disabled {
    opacity: 0.45;
    filter: blur(1px);
    pointer-events: none;
    transform: scale(0.99);
}

.submenu {
    max-height: 0;
    margin-left: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: max-height 0.35s ease, opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.danger-zone
    {
        border: 1px solid rgba(239,68,68,0.15);
        background:
        linear-gradient(
            180deg,
            rgba(255,255,255,1),
            rgba(254,242,242,0.9)
        );
    }

    .dashboard-stats {
        display: flex;
        gap: 15px;
    }
    
    .logout-btn
    {
        width: 100%;
        margin-top: 20px;
        border: none;
        cursor: pointer;
        padding: 18px;
        border-radius: 20px;
    
        font-size: 1rem;
        font-weight: 700;
        color: white;
    
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    
        background:
        linear-gradient(
            135deg,
            #ef4444,
            #dc2626
        );
    
        box-shadow:
            0 12px 25px rgba(239,68,68,0.25);
    
        transition: all .25s ease;
    }
    .stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 24.5%;
        margin-right: 10px;
        border-radius: 10px;
        }
    
    .logout-btn:hover
    {
        transform: translateY(-2px);
    
        box-shadow:
            0 18px 35px rgba(239,68,68,0.35);
    
        background:
        linear-gradient(
            135deg,
            #f87171,
            #dc2626
        );
    }
    
    .logout-btn:active
    {
        transform: scale(.98);
    }
    
    .logout-btn i
    {
        font-size: 1rem;
    }

    /* .modal {
        transform: translateY(40px);
        opacity: 0;
    } */
    
    .modal-overlay.active .modal {
        transform: translateY(0);
        opacity: 1;
    }
    
    @media(max-width:1100px)
    {
        .stats-grid
        {
            grid-template-columns:1fr;
        }
    }
    
    @media(max-width:768px)
    {   
        .main
        {
            padding:20px;
        }
        html,body 
        {
            overflow-x: hidden;
            width: 100%;
        }
        .logo-text-mobile {
            font-weight: 900;
            font-size: 20px;
        }
        .dashboard-stats {
            flex-direction: column;
        }
    
        .main-header
        {
            flex-direction:column;
            align-items:flex-start;
            gap:18px;
        }
    
        .user-profile
        {
            width:100%;
            justify-content:flex-start;
        }
    
        .info-panel > div[style*="grid-template-columns"]
        {
            grid-template-columns:1fr !important;
        }

            .sidebar {
                display: none;
            }
        
            .app {
                display: block;
            }
        
            .main {
                width: 100%;
                padding: 80px 15px 20px;
            }
        
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
        
                position: fixed;
                top: 15px;
                right: 50%;
        
                width: 52px;
                height: 52px;
        
                border: none;
                border-radius: 14px;
        
                background: #fff;
                color: #1e3a8a;
        
                font-size: 20px;
                cursor: pointer;
        
                z-index: 3000;
        
                box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
            }

            .arrow {
                margin-left: auto;
                transition: transform 0.3s;
            }
        
            .sidebar-mobile {
                position: fixed;
                inset: 0;
        
                width: 100%;
                height: 100vh;
        
                background: rgba(255, 255, 255, .98);
                backdrop-filter: blur(14px);
        
                z-index: 2500;
        
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
        
                transition: .35s ease;
        
                overflow-y: auto;
            }
        
            .sidebar-mobile.open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
        
            .sidebar-mobile-header {
                display: flex;
                align-items: center;
                /* ← уже есть или добавь */
                justify-content: space-between;
        
                padding: 20px;
                border-bottom: 1px solid #e2e8f0;
        
                background: white;
                position: sticky;
                top: 0;
                z-index: 2;
            }
        
            .logo-area-mobile {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }
        
            .user-profile {
                max-width: 40%;
            }
        
            .sidebar-mobile-content {
                padding: 20px;
                display: flex;
                flex-direction: column;
                gap: 6px;
            }
        
            .sidebar-mobile-content .nav-item {
                min-height: 54px;
                border-radius: 16px;
            }
        
            .sidebar-mobile-content .submenu {
                margin-left: 10px;
            }
        
            .sidebar-mobile-close {
                width: 46px;
                height: 46px;
        
                border: none;
                border-radius: 14px;
        
                background: #eef2ff;
                color: #1e3a8a;
        
                cursor: pointer;
        
                font-size: 18px;
                transition: .25s;
            }
        
            /* .sidebar-mobile-close:hover {
                background: #1e3a8a;
                color: white;
                transform: rotate(90deg);
            } */
        
            .sidebar-overlay {
                position: fixed;
                inset: 0;
        
                background: rgba(15, 23, 42, .55);
                backdrop-filter: blur(4px);
        
                opacity: 0;
                visibility: hidden;
        
                transition: .3s;
        
                z-index: 2400;
            }
        
            .sidebar-overlay.active {
                opacity: 1;
                visibility: visible;
            }
        
            .main-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        
            .user-profile {
                width: 100%;
            }
        
            .stats-grid {
                grid-template-columns: 1fr;
            }
        
            .news-grid {
                grid-template-columns: 1fr;
            }
        
            .contract-strip {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }
        
            .status-select,
            .status-select2,
            .doc-select,
            .type-select,
            .days-select {
                flex-direction: column;
                width: 100%;
            }
        
            .modal {
                width: calc(100% - 20px);
                margin: 10px;
                padding: 20px;
            }
        
            table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
            .col-md-3 {
                width: 100%;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
    }

.submenu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sidebar .nav-link i { 
    width: 24px; 
    text-align: center; 
    margin-right: 0.75rem; 
}
.main-content { 
    padding: 1.5rem; 
}
.card { 
    border: none; 
    border-radius: 1rem; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.04); 
}
.stat-card { 
    background: #fff; 
    border-radius: 1rem; 
    padding: 1.25rem; 
    display: flex;
    align-items: center; 
    flex-direction: row;
    gap: 1rem; 
    margin-right: 10px;
    height: 80%;
}
.stat-icon { 
    width: 48px; 
    height: 48px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem;
}
.table-hover tbody tr:hover { 
    background-color: rgba(13, 110, 253, 0.04); 
    cursor: pointer; 
}

.fa-calculator:before {
    content: "\f1ec";
}
h6 {
font-weight: 900;
}
small {
font-weight: 900;
font-size: 14px;
}

.section-title {
font-weight: 700;
color: #1a1f36;
margin-bottom: 1rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid #e9ecef;
}

.row.equal-height {
display: flex;
align-items: stretch;
}

.row.equal-height > [class*='col-'] {
display: flex;
}

.row.equal-height .card {
width: 100%;
height: 100%;
}