/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+Infant:wght@400;600;700&family=Figtree:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Theme Colors */
:root {
    --primary-color: #344e80;
    --secondary-color: #43a24c;
    --background-color: #cedce7;
    --text-color: #293958;
    --title-font: 'Ysabeau Infant', sans-serif;
    --body-font: 'Figtree', sans-serif;
}

/* Ensure full width for all devices */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.005em;
}

/* Enhanced Typography */
p, span, div, label, .form-label, .btn, .card-text, .text-muted, .small {
    letter-spacing: 0.01em;
}

/* Compact letter spacing for buttons and small text */
.btn, .badge, .small, small {
    letter-spacing: 0.008em;
}

/* Table text spacing */
.table td, .table th {
    letter-spacing: 0.01em;
}

/* Navigation */
.navbar.bg-primary,
.navbar.navbar-dark {
    background-color: var(--primary-color) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Ensure fixed header always stays on top */
.header-modern{
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1055 !important;
}
main {
    margin-top: 100px; /* space for fixed header + taller navbar */
}

.navbar-brand {
    font-family: var(--body-font) !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
}

/* Apply white nav link styles only on dark/primary navbars */
.navbar.navbar-dark .navbar-nav .nav-link,
.navbar.bg-primary .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar.navbar-dark .navbar-nav .nav-link:hover,
.navbar.bg-primary .navbar-nav .nav-link:hover {
    color: white !important;
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
}

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

.btn-success {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: 500;
}

.btn-success:hover {
    background-color: #369040;
    border-color: #369040;
}

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

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

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-header {
    background-color: rgba(52, 78, 128, 0.05);
    border-bottom: 1px solid rgba(52, 78, 128, 0.1);
    font-weight: 600;
}

.card-title {
    color: var(--primary-color);
    font-family: var(--title-font);
}

/* Tables */
.table {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.table th {
    background-color: rgba(52, 78, 128, 0.05);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    padding: 15px;
}

.table td {
    padding: 12px 15px;
    border-color: rgba(52, 78, 128, 0.1);
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(52, 78, 128, 0.02);
}

/* Forms */
.form-control, .form-select {
    border: 2px solid rgba(52, 78, 128, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 78, 128, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

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

/* Badges */
.badge {
    font-weight: 500;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    font-weight: 500;
}

/* Toast portal: solid cards, non-transparent */
#toast-root .alert,
.notification-toast {
    background: #ffffff !important;
    color: var(--text-color) !important;
    border: 1px solid rgba(2, 6, 23, 0.08) !important;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.12) !important;
}
#toast-root .alert-success, .notification-toast.alert-success { border-left: 4px solid var(--secondary-color); }
#toast-root .alert-danger, .notification-toast.alert-danger { border-left: 4px solid #dc3545; }
#toast-root .alert-warning, .notification-toast.alert-warning { border-left: 4px solid #f59e0b; }
#toast-root .alert-info, .notification-toast.alert-info { border-left: 4px solid var(--primary-color); }

.alert-success {
    background-color: rgba(67, 162, 76, 0.1);
    color: var(--secondary-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #856404;
}

.alert-info {
    background-color: rgba(52, 78, 128, 0.1);
    color: var(--primary-color);
}

/* Modals */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
    background-color: rgba(52, 78, 128, 0.05);
    border-bottom: 1px solid rgba(52, 78, 128, 0.1);
    border-radius: 15px 15px 0 0;
}

.modal-title {
    color: var(--primary-color);
    font-family: var(--title-font);
    font-weight: 600;
}

.modal-footer {
    border-top: 1px solid rgba(52, 78, 128, 0.1);
    border-radius: 0 0 15px 15px;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(52, 78, 128, 0.1);
    color: var(--primary-color);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--text-color));
}

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

.bg-gradient-warning {
    background: linear-gradient(135deg, #8B6914, #654321);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #0a4853, #063338);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Administrative Actions Custom Styling */
.btn-warning {
    background: linear-gradient(135deg, #8B6914, #654321) !important;
    border: none !important;
    color: #cedce7 !important;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #654321, #4a3019) !important;
    color: #cedce7 !important;
}

.btn-info {
    background: linear-gradient(135deg, #0a4853, #063338) !important;
    border: none !important;
    color: #cedce7 !important;
}

.btn-info:hover {
    background: linear-gradient(135deg, #063338, #042529) !important;
    color: #cedce7 !important;
}

/* Custom Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container, .container-fluid {
        padding: 0 10px;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Ensure navbar takes full width */
    .navbar .container {
        max-width: 100% !important;
        padding: 0 10px;
    }
    
    /* Fix card header overflow issues on mobile */
    .card-header .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Make search and filter elements stack properly on mobile */
    .card-header .d-flex .d-flex {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    /* Adjust search input and filter widths for mobile */
    .card-header input[type="text"],
    .card-header select {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix title and button layout on mobile */
    .d-flex.justify-content-between.align-items-center {
        flex-direction: column;
        align-items: stretch !important;
        gap: 15px;
    }
    
    .d-flex.justify-content-between.align-items-center .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Prevent horizontal overflow */
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container, .container-fluid {
        max-width: 100vw !important;
        overflow-x: hidden;
    }
    
    /* Fix table overflow on mobile */
    .table-responsive {
        max-width: 100vw;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* More specific mobile fixes for cards */
    .card-header {
        padding: 15px !important;
    }
    
    .card-header .d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px;
    }
    
    .card-header .d-flex.gap-2 {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .card-header input,
    .card-header select {
        width: 100% !important;
        min-width: auto !important;
        max-width: 100% !important;
    }

}

/* Dashboard Specific Styles */
.dashboard-stats .card {
    transition: transform 0.3s ease;
}

.dashboard-stats .card:hover {
    transform: translateY(-5px);
}

.dashboard-stats .card-body {
    padding: 25px;
}

.dashboard-stats h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Sidebar Styles */
.sidebar {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover {
    background-color: rgba(52, 78, 128, 0.1);
    color: var(--primary-color);
}

.sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* Loading Spinner */
.spinner-border {
    color: var(--primary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(52, 78, 128, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-color);
}



/* 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.5s ease-out;
}

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

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .modal {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    body {
        background-color: white !important;
    }
}

/* Custom Focus Styles */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 78, 128, 0.25);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #008000;
        --text-color: #000000;
        --background-color: #ffffff;
    }
    
    .card {
        border: 2px solid #000000;
    }
    
    .btn {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Modern Dashboard Tiles */
.kpi-tiles .kpi-tile {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(2,6,23,0.06);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(2,6,23,0.06);
    padding: 16px 18px;
    height: 100%;
    transition: box-shadow .15s ease;
}
.kpi-tiles .kpi-tile:hover { box-shadow: 0 6px 16px rgba(2,6,23,0.10); }
.kpi-tiles .kpi-top { display: flex; justify-content: space-between; align-items: center; }
.kpi-tiles .meta { display: flex; flex-direction: column; }
.kpi-tiles .value { font-size: 1.2rem; font-weight: 800; color: #1f2937; line-height: 1.1; }
.kpi-tiles .value.value-compact { font-size: 1.0rem; }
.kpi-tiles .label { color: #6b7280; margin: 0; }
.kpi-tiles .icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 12px rgba(2,6,23,0.10); }
.kpi-tiles .icon.primary { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.kpi-tiles .icon.success { background: linear-gradient(135deg,#10b981,#059669); }
.kpi-tiles .icon.warning { background: linear-gradient(135deg,#f59e0b,#d97706); }
.kpi-tiles .icon.info { background: linear-gradient(135deg,#06b6d4,#0ea5e9); }
.kpi-tiles .icon.neutral { background: linear-gradient(135deg,#64748b,#334155); }
.kpi-tiles .footer { margin-top: 10px; display: flex; justify-content: flex-end; }
.kpi-tiles .footer a, .kpi-tiles .note { font-size: .85rem; color: #1d4ed8; text-decoration: none; }
.kpi-tiles .note { color: #6b7280; }

/* Top Performers Modern Table */
.tp-modern .card { border: 1px solid rgba(2,6,23,0.06); border-radius: 16px; box-shadow: 0 6px 18px rgba(2,6,23,0.06); }
.tp-modern .card-header { background: #fff; border: 0; border-bottom: 1px solid rgba(2,6,23,0.06); border-top-left-radius: 16px; border-top-right-radius: 16px; }
.tp-modern .card-header h5 { display: flex; align-items: center; gap: 10px; margin: 0; font-weight: 800; color: var(--primary-color); font-family: var(--title-font); }
.tp-modern .card-header .filters .btn { border-color: rgba(2,6,23,0.12); }
.tp-modern .card-body { padding: 16px; }
.tp-modern table.table { --bs-table-striped-bg: rgba(2,6,23,0.02); }
.tp-modern .badge { border-radius: 999px; }
.tp-modern h6 { font-weight: 700; color: #1f2937; }
.rank-pill { display: inline-block; min-width: 28px; text-align: center; padding: 4px 10px; border-radius: 999px; background: rgba(59,130,246,0.12); color: #1d4ed8; border: 1px solid rgba(59,130,246,0.25); }
.count-pill { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(2,6,23,0.04); color: #334155; border: 1px solid rgba(2,6,23,0.06); }
.name-link { color: #1f2937; text-decoration: none; font-family: var(--title-font); }
.name-link:hover { color: var(--primary-color); }
.top-performers-section { overflow: hidden; }

/* System Alerts + Admin tiles */
.sys-modern .card { border: 1px solid rgba(2,6,23,0.06); border-radius: 16px; box-shadow: 0 6px 18px rgba(2,6,23,0.06); }
.sys-modern .card-header { background: #fff; border: 0; border-bottom: 1px solid rgba(2,6,23,0.06); border-top-left-radius: 16px; border-top-right-radius: 16px; }
.sys-modern .card-header h5 { display: flex; align-items: center; gap: 10px; margin: 0; font-weight: 800; color: var(--primary-color); font-family: var(--title-font); }
.sys-modern .alert { border: 1px solid rgba(2,6,23,0.08); box-shadow: 0 4px 12px rgba(2,6,23,0.06); border-left-width: 4px; }
.sys-modern .tile-action { display: flex; align-items: center; gap: 12px; border: 1px solid rgba(2,6,23,0.08); border-radius: 14px; padding: 14px 16px; background: #fff; box-shadow: 0 4px 14px rgba(2,6,23,0.06); height: 95px; }
.sys-modern .tile-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.sys-modern .tile-title { font-weight: 800; color: #1f2937; }
.sys-modern .tile-sub { font-size: .85rem; color: #6b7280; }
.sys-modern .btn-modern { border-radius: 12px; }

/* Tablet optimization: show two tiles per row for better readability */
@media (min-width: 768px) and (max-width: 1024px) {
    .kpi-tiles .col-md-3, .kpi-tiles .col-lg-3, .sys-modern .col-lg-3 { flex: 0 0 50% !important; max-width: 50% !important; }
    .sys-modern .tile-action { width: 100%; }
}

/* Accounting Page (scoped) */
.accounting .stat-card{border:0;border-radius:12px;color:#fff;box-shadow:0 8px 20px rgba(0,0,0,.08);overflow:hidden;transition:all .2s ease}
.accounting .stat-card:hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(0,0,0,.12)}
.accounting .stat-body{padding:16px 18px}
.accounting .stat-icon{width:50px;height:50px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.18)}
.accounting .stat-title{font-size:.82rem;opacity:.9;margin:0}
.accounting .stat-value{font-size:1.6rem;font-weight:800;letter-spacing:.3px;margin:4px 0 0}
.accounting .bg-income{background:linear-gradient(135deg,#16a34a 0%, #0f7a32 100%)}
.accounting .bg-expense{background:linear-gradient(135deg,#dc2626 0%, #991b1b 100%)}
.accounting .bg-net{background:linear-gradient(135deg,#2563eb 0%, #143ea8 100%)}
.accounting .bg-loan-proceeds{background:linear-gradient(135deg,#0ea5e9 0%, #0369a1 100%)}
.accounting .bg-loan-repaid{background:linear-gradient(135deg,#f59e0b 0%, #92400e 100%)}
.accounting .bg-loan-outstanding{background:linear-gradient(135deg,#7c3aed 0%, #4c1d95 100%)}
.accounting .bg-top-income{background:linear-gradient(135deg,#22c55e 0%, #15803d 100%)}
.accounting .bg-top-expense{background:linear-gradient(135deg,#f97316 0%, #c2410c 100%)}
.accounting .tile-group .row{--bs-gutter-x:1rem;--bs-gutter-y:.75rem}
.accounting .tile-group .row + .row{margin-top:.5rem}
@media (min-width:576px){
  .accounting .tile-group .row{--bs-gutter-x:1rem;--bs-gutter-y:.75rem}
  .accounting .tile-group .row + .row{margin-top:.75rem}
}
.accounting .section-gap-lg{margin-bottom:4rem}
.accounting .form-check-input[type="radio"]{width:16px;height:16px;border-radius:50%;flex:0 0 16px}
.accounting .btn-icon{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:12px}
.accounting .action-cluster{gap:8px}
@media (min-width:576px){
  .accounting .action-cluster{gap:10px}
  .accounting .btn-icon{width:38px;height:38px;border-radius:10px}
}
@media (max-width:575.98px){
  .accounting .btn-icon{box-shadow:0 6px 14px rgba(0,0,0,.08)}
  .accounting .btn-icon:active{transform:translateY(1px)}
  .accounting .btn-outline-secondary.btn-icon{background:linear-gradient(135deg,#f3f4f6,#e5e7eb);border:0;color:#111827}
}
@media (max-width:576px){
  .accounting .stat-value{font-size:1.45rem}
  .accounting .stat-icon{width:46px;height:46px}
}
.accounting .btn-modern{border-radius:10px}
.accounting .btn-icon-l{display:inline-flex;gap:.5rem;align-items:center}
@media (max-width:575.98px){
  .accounting .btn-modern{box-shadow:0 4px 10px rgba(0,0,0,.08)}
}
.accounting .modal-modern .modal-header{background:linear-gradient(135deg,#111827,#1f2937); color:#cedce7}
.accounting .modal-modern .modal-header .modal-title{color:#cedce7}
.accounting .modal-modern .btn-close{filter: invert(86%) sepia(5%) saturate(355%) hue-rotate(174deg) brightness(95%) contrast(90%)}
.accounting .modal-modern .tile{background:#f9fafb; border-radius:12px; padding:12px; display:flex; align-items:center; justify-content:space-between}
.accounting .modal-modern .tile .label{font-size:.8rem; color:#6b7280}
.accounting .modal-modern .tile .value{font-weight:800; font-size:1.1rem; color:#111827}

/* Quick stats colored cards */
.accounting .qs-card{padding:12px;border-radius:12px;color:#fff}
.accounting .qs-income{background:#16a34a}
.accounting .qs-expense{background:#dc2626}
.accounting .qs-net{background:#2563eb}

/* Accounting table refinements */
.accounting table.table { background: #fff; border-radius: 12px; }
.accounting table.table thead th {
  background: #f8fafc; color: #1f2937; font-weight: 700;
  border-bottom: 1px solid rgba(2,6,23,0.06);
}
.accounting table.table tbody tr { transition: background .15s ease; }
.accounting table.table tbody tr:nth-child(odd) { background: rgba(2,6,23,0.015); }
.accounting table.table tbody tr:hover { background: rgba(2,6,23,0.04); }
.accounting table.table td, .accounting table.table th { padding: 10px 12px; }
.accounting .badge.bg-success { background: rgba(34,197,94,0.12) !important; color: #15803d !important; border: 1px solid rgba(34,197,94,0.24); }
.accounting .badge.bg-danger { background: rgba(239,68,68,0.12) !important; color: #b91c1c !important; border: 1px solid rgba(239,68,68,0.24); }
.accounting .badge.bg-secondary { background: rgba(107,114,128,0.12) !important; color: #374151 !important; border: 1px solid rgba(107,114,128,0.24); }

/* Custom Purple Badge for Pending Status */
.badge.bg-purple {
    background-color: #8b5cf6 !important;
    color: white !important;
}

/* Enquiries Status Badge Colors - Match Stat Tiles Exactly */
.enquiries-page .badge.bg-danger {
    background-color: #dc2626 !important;
    color: white !important;
}

.enquiries-page .badge.bg-warning {
    background-color: #f59e0b !important;
    color: white !important;
}

.enquiries-page .badge.bg-info {
    background-color: #06b6d4 !important;
    color: white !important;
}

.enquiries-page .badge.bg-secondary {
    background-color: #6b7280 !important;
    color: white !important;
}

.enquiries-page .badge.bg-primary {
    background-color: #3b82f6 !important;
    color: white !important;
}

.enquiries-page .badge.bg-success {
    background-color: #10b981 !important;
    color: white !important;
}

.enquiries-page .badge.bg-orange {
    background-color: #f97316 !important;
    color: white !important;
}