.dashboard-card .text-xs {
    color: #ffffff !important;
}
/* Church Management System Custom Styles */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Responsive Sidebar Margins - Updated for responsive sidebar width */
/* Tablets (768px-1024px): Sidebar is w-64 (16rem/256px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .md\:ml-72 {
        margin-left: 16rem; /* w-64 */
    }
}

/* Desktops (1024px+): Sidebar is w-72 (18rem/288px) */
@media (min-width: 1024px) {
    .md\:ml-72 {
        margin-left: 18rem; /* w-72 */
    }
}

/* Responsive Font Sizes for Mobile Optimization */
/* Heading scaling for better mobile readability */
h1 {
    font-size: 1.875rem; /* 30px on mobile */
}
@media (min-width: 640px) {
    h1 { font-size: 2.25rem; /* 36px on tablets */ }
}
@media (min-width: 1024px) {
    h1 { font-size: 2.5rem; /* 40px on desktop */ }
}

h2 {
    font-size: 1.5rem; /* 24px on mobile */
}
@media (min-width: 640px) {
    h2 { font-size: 1.875rem; /* 30px on tablets */ }
}
@media (min-width: 1024px) {
    h2 { font-size: 2rem; /* 32px on desktop */ }
}

h3 {
    font-size: 1.25rem; /* 20px on mobile */
}
@media (min-width: 640px) {
    h3 { font-size: 1.5rem; /* 24px on tablets */ }
}
@media (min-width: 1024px) {
    h3 { font-size: 1.875rem; /* 30px on desktop */ }
}

h4 {
    font-size: 1.1rem; /* 18px on mobile */
}
@media (min-width: 640px) {
    h4 { font-size: 1.25rem; /* 20px on tablets */ }
}
@media (min-width: 1024px) {
    h4 { font-size: 1.5rem; /* 24px on desktop */ }
}

/* Responsive Form Input Sizing */
input, select, textarea {
    font-size: 1rem; /* 16px prevents auto-zoom on iOS */
    min-height: 2.5rem; /* 40px minimum touch target height (accessibility) */
}

/* Responsive Table Font Sizes */
table {
    font-size: 0.875rem; /* 14px on mobile */
}
@media (min-width: 1024px) {
    table { font-size: 0.9375rem; /* Slightly larger on desktop */ }
}

/* Responsive Button Sizing */
button, .btn, [role="button"] {
    min-height: 2.5rem; /* 40px minimum touch target */
    padding: 0.625rem 1rem; /* Mobile-friendly padding */
}
@media (min-width: 640px) {
    button, .btn, [role="button"] {
        padding: 0.75rem 1.25rem;
    }
}

/* Override container-fluid to account for fixed sidebar and ensure proper overflow handling */
#content-wrapper > .container-fluid {
    width: 100%;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 1.5rem !important;  /* Bootstrap px-4 = 1.5rem */
    padding-right: 1.5rem !important;
    overflow-x: hidden;  /* Prevent horizontal scrollbar */
    box-sizing: border-box;
}

/* Fix topbar width - only apply when not fixed */
#content-wrapper > .topbar:not(.fixed) {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#content-wrapper > .topbar:not(.fixed) .topbar-inner {
    padding-left: 1.5rem;  /* Match container padding */
    padding-right: 1.5rem;
}

/* Membership pages: card styling - keep natural layout */
#content-wrapper > .container-fluid > .row > .col-12 .card {
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}



/* Fix footer width and align with card */
/* Match <footer class="footer"> inside #content-wrapper */
#content-wrapper > footer.footer {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    /* margin-top: auto is handled by Bootstrap mt-auto class */
    padding-left: 1.5rem !important;  /* match container px-4 left padding */
    padding-right: 1.5rem !important; /* match container px-4 right padding */
    clear: both;
    box-sizing: border-box;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    flex-shrink: 0;  /* Prevent footer from shrinking */
}

/* Override the nested container inside footer */
/* Match .container inside <footer> */
#content-wrapper > footer.footer .container {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
/* Ensure dropdown-menu is visible and above content */
.dropdown-menu {
    z-index: 2000 !important;
    display: none;
}
.dropdown.show .dropdown-menu {
    display: block;
}

.navbar-brand {
    font-weight: bold;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: var(--light-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

/* Dashboard Cards */
.dashboard-card {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    border: none;
}

.dashboard-card.income {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.dashboard-card.expense {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.dashboard-card.balance {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

.dashboard-card .card-body {
    padding: 1.5rem;
}

.dashboard-card .display-6 {
    font-weight: bold;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Button Styles */
.btn {
    border-radius: 6px;
    font-weight: 500;
}

/* Primary button - blue */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #ffffff !important;
}

/* Success button - green */
.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: #ffffff !important;
}

.btn-success:hover {
    background-color: #146c43;
    border-color: #146c43;
    color: #ffffff !important;
}

/* Outline success button - green border with dark text */
.btn-outline-success {
    color: var(--success-color) !important;
    border-color: var(--success-color);
    background-color: transparent;
}

.btn-outline-success:hover {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: #ffffff !important;
}

/* Secondary button - gray */
.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff !important;
}

.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #5c636a;
    color: #ffffff !important;
}

/* Outline secondary button */
.btn-outline-secondary {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    background-color: transparent;
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff !important;
}

/* Danger button - red */
.btn-danger {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    color: #ffffff !important;
}

.btn-danger:hover {
    background-color: #b02a37;
    border-color: #b02a37;
    color: #ffffff !important;
}

/* Small action buttons */
.btn-sm {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Button with icon */
.btn i {
    margin-right: 0.25rem;
    margin-left: -0.25rem;
}

/* Table Styles */
.table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background-color: var(--light-color);
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 8px;
}

/* Sidebar Styles (primary-color background) */
.sidebar {
    background-color: var(--primary-color);
    border-right: 1px solid rgba(255,255,255,0.08);
    min-height: calc(100vh - 56px);
}

.sidebar .nav-link {
    color: rgba(255,255,255,0.95);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 0.25rem 0;
}

.sidebar .nav-link:hover {
    background-color: rgba(255,255,255,0.08);
    color: #ffffff;
}

.sidebar .nav-link.active {
    background-color: rgba(0,0,0,0.12) !important;
    color: #ffffff !important;
    border-left: 3px solid rgba(255,255,255,0.18) !important;
    padding-left: calc(1rem - 3px) !important;
}
.sidebar .nav-link.active span {
    color: #ffffff !important;
}

/* Chart Container */
.chart-container {
    position: relative;
    height: 400px;
    margin: 1rem 0;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    transition: border-color 0.15s ease-in-out;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.1);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-color: #dee2e6;
}

.pagination .page-link:hover {
    color: #0056b3;
    background-color: var(--light-color);
    border-color: #dee2e6;
}

/* ========================================
 * Modern Theme Sidebar & Layout Fixes
 * Consolidates all sidebar CSS to prevent conflicts
 * ======================================== */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    z-index: 1050;
    background-color: var(--sidebar-dark-bg);
    color: var(--sidebar-dark-text);
    padding-top: 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidebar.collapsed {
    width: 70px;
}

/* Content wrapper adjustment for sidebar width */
#content-wrapper {
    margin-left: 250px;
    transition: margin-left 0.3s ease-in-out;
}

#content-wrapper.expanded, 
#content-wrapper.collapsed {
    margin-left: 70px;
}

/* Submenu: remove ms-3 margin that pushes out of sidebar */
.sidebar .nav.flex-column.ms-3 {
    margin-left: 0 !important;
    padding-left: 1rem;
}

/* Collapse panels stay within sidebar bounds */
.sidebar .collapse {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
}

/* Dropdown menus inside sidebar: inherit background, no shadow */
.sidebar .dropdown-menu {
    background-color: var(--primary-color) !important;
    color: rgba(255,255,255,0.95) !important;
    border: none !important;
    box-shadow: none !important;
    position: static;
    width: 100%;
    min-width: auto;
}

/* Ensure text contrast in sidebar */
.sidebar .nav-link,
.sidebar .nav-link i,
.sidebar .nav-link span,
.sidebar .sidebar-brand,
.sidebar .sidebar-brand span {
    color: rgba(255,255,255,0.98) !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Status Badges */
.badge {
    font-size: 0.75em;
    font-weight: 500;
}

/* Loading Spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* ========================================
 * Dashboard Summary Card Contrast
 * Target only the small summary cards at the top of the dashboard (Total Income, Expenses, Balance, Members)
 * ======================================== */
.dashboard-card {
    color: #ffffff !important;
}

.dashboard-card .card-body,
.dashboard-card .card-header,
.dashboard-card .card-footer {
    color: #ffffff !important;
}

/* Ensure utility text inside dashboard summary cards is white */
.dashboard-card .text-gray-800,
.dashboard-card .display-6,
.dashboard-card .h5,
.dashboard-card h5 {
    color: #ffffff !important;
}

/* Icon color overrides inside dashboard summary cards */
.dashboard-card .icon-circle,
.dashboard-card .icon-circle i {
    color: #ffffff !important;
}

/* Make buttons in the summary card white text when they appear */
.dashboard-card .btn {
    color: #ffffff !important;
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #b02a37);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #0aa2c0);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-card .display-6 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn:not(#printBtn),
    .pagination,
    .alert,
    .nav-tabs {
        display: none !important;
    }
    
    #printBtn {
        display: none !important; /* Hide print button when actually printing */
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    body {
        background-color: white !important;
    }
    
    /* Show all tab content when printing */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add spacing between tab content when printing */
    .tab-pane:not(:last-child) {
        margin-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 2rem;
    }
    
    /* Add tab titles when printing */
    .tab-pane::before {
        content: attr(aria-labelledby);
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

