    :root {
        /* Primary Colors*/
        --brand-navy-1: #0C1A37;       /* cards */
        --brand-navy-2: #0F284D;          /* cards */
        --brand-navy-3: #143364;          /* cards */
        
        /* Accent Colors*/
        --brand-lime: #B8F34B;
        --brand-lime-2: #A3E63F;          /* hover */
        
        /* Text */
        --brand-text: #ECF2FF;           /* text on brand-navy-1 */
        --brand-ink: #071527;             /* text on lime */
        
        /* Card - RGBA */
        --rgba-card-color: rgba(255,255,255,.08);
    }

    /* Global surface + text */
    #kt_app_body, #kt_app_root, #kt_app_page, #kt_app_header, #kt_app_sidebar, .bg-dark {
        background: var(--brand-navy-1);
        color: var(--brand-text);
    }
    
    /* Map to Bootstrap tokens used by Metronic */
    :root{
      --bs-body-bg: var(--brand-navy-1);
      --bs-body-color: var(--brand-text);
      --bs-primary: var(--brand-lime);
      --bs-primary-rgb:184,243,75;
      --bs-link-color: var(--brand-lime);
      --bs-card-bg: var(--brand-navy-2);
      --bs-card-border-color: var(--rgba-card-color);
    }
    
    /* Buttons (Lime with Navy Text) */
    .btn-primary{
      background: var(--brand-lime);
      border-color: var(--brand-lime);
      color: var(--brand-ink);
    }
    .btn-primary:hover,.btn-primary:focus{
      background: var(--brand-lime-2);
      border-color: var(--brand-lime-2);
      color: var(--brand-ink);
    }
    
    /* Badges/Labels */
    .badge.bg-success{ background: var(--brand-lime)!important; color: var(--brand-ink)!important; }
    
    /* Cards and Header */
    .card{ background: var(--bs-card-bg); border-color: var(--bs-card-border-color); }
    .app-header{ background: var(--brand-navy); }
    
    /* Icons: Lime Accent */
    .ki-duotone,[class*="ki-"]{ color: var(--brand-lime); }
    .text-primary{ color: var(--brand-lime)!important; }
    
    /* Accent ring utility */
    .accent-ring{ box-shadow: 0 0 0 3px rgba(184,243,75,.35); border-radius: 12px; }
    
    /* Badge Avatars */
    .symbol.symbol-circle{ overflow:hidden; }
    .symbol img{ width:100%!important; height:100%!important; object-fit:cover; display:block; }
    
    
    /* ===== Typography tokens ===== */
    :root{
      --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
                   "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
      --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    
      --text-base-size: 16px;     /* body size */
      --text-body-lh: 1.55;       /* body line-height */
      --text-heading-lh: 1.25;    /* headings line-height */
      --letter-tight: -0.005em;
      --letter-normal: 0;
      --letter-wide: 0.01em;
    }
    
    /* Map to Bootstrap so Metronic picks it up */
    :root{
      --bs-font-sans-serif: var(--font-sans);
    }
    
    /* Base text */
    html { font-size: var(--text-base-size); }
    body, .app-body, #kt_app_root {
      font-family: var(--font-sans);
      line-height: var(--text-body-lh);
      color: var(--brand-text);
    }
    
    /* Paragraphs */
    p { margin-bottom: 0.8rem; font-size: 1rem; letter-spacing: var(--letter-normal); }
    .lead { font-size: 1.125rem; line-height: 1.6; }
    
    /* Headings (responsive with clamp) */
    h1, .h1, .modal-title, .card-title.h1   { font-weight: 700; line-height: var(--text-heading-lh); letter-spacing: var(--letter-tight); }
    h2, .h2                                  { font-weight: 700; line-height: var(--text-heading-lh); letter-spacing: var(--letter-tight); }
    h3, .h3                                  { font-weight: 600; line-height: var(--text-heading-lh); }
    h4, .h4                                  { font-weight: 600; line-height: 1.3; }
    h5, .h5                                  { font-weight: 600; line-height: 1.35; }
    h6, .h6                                  { font-weight: 600; line-height: 1.4; }
    
    h1, .h1 { font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem); }   /* 28 → 40 */
    h2, .h2 { font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);    }   /* 24 → 32 */
    h3, .h3 { font-size: clamp(1.25rem, 1rem + 0.8vw, 1.5rem);   }   /* 20 → 24 */
    h4, .h4 { font-size: clamp(1.125rem, 1rem + 0.3vw, 1.25rem); }   /* 18 → 20 */
    h5, .h5 { font-size: 1rem; }                                     /* 16 */
    h6, .h6 { font-size: 0.9375rem; }                                /* 15 */
    
    /* Labels / form microcopy */
    label, .form-label { font-weight: 600; font-size: clamp(0.875rem, 0.82rem + 0.2vw, 0.95rem); letter-spacing: var(--letter-wide); }
    .form-text, .help-block, small.text-muted { font-size: 0.875rem; line-height: 1.45; opacity: .85; }
    
    /* Buttons */
    .btn { font-weight: 600; letter-spacing: var(--letter-wide); }
    .btn-sm { font-size: 0.875rem; }
    .btn-lg { font-size: 1rem; }
    
    /* Badges / pills */
    .badge { font-weight: 600; letter-spacing: .02em; font-size: 0.8125rem; }
    
    /* Nav / tabs */
    .nav-link, .menu-link { font-weight: 500; font-size: 0.9375rem; }
    .nav-line-tabs .nav-link { letter-spacing: var(--letter-wide); }
    
    /* Tables */
    .table th { font-weight: 600; letter-spacing: .02em; }
    .table td { font-weight: 400; }
    
    /* Cards / titles */
    .card-title { font-weight: 600; letter-spacing: var(--letter-tight); }
    
    /* Code / pre */
    code, pre, kbd, samp { font-family: var(--font-mono); font-size: 0.9375rem; }
    
    /* Tooltips / small text */
    small, .small { font-size: 0.8125rem; }
    
    /* Ensure avatars never overflow (your bug) */
    .symbol.symbol-circle { overflow: hidden; }
    .symbol img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; }


    @media(min-width: 992px){
    	[data-kt-app-aside-fixed=true] .app-wrapper{
    		margin-right: 0;
    	}
    	[data-kt-app-aside-enabled=true] .app-header-separator {
    		margin-right: 0;
    	}
    }

.hidden{
	display: none !important;
}

/* .modal-content{
	background-color: #d7deeb !important;
} */

/* .table.gy-5 td, .table.gy-5 th {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.table tr.child td.child table{
	margin-bottom: 1.5rem;
}


.table-hover>tbody>tr.info>*,
table.dataTable.table-hover>tbody>tr.info>*{
	color: rgb(62 151 255 / 78%);
}

.table-hover>tbody>tr.info:hover>*,
table.dataTable.table-hover>tbody>tr.info:hover>*{
	box-shadow: inset 0 0 0 9999px rgb(62 151 255 / 78%);
	color: white;
}

.table-hover>tbody>tr.success>*,
table.dataTable.table-hover>tbody>tr.success>*{
	color: rgba(124,219,159,.95);
}

.table-hover>tbody>tr.success:hover>*,
table.dataTable.table-hover>tbody>tr.success:hover>*{
	box-shadow: inset 0 0 0 9999px rgba(124,219,159,.45);
	color: white;
}


.table-hover>tbody>tr.warning>*,
table.dataTable.table-hover>tbody>tr.warning>*{
	color: rgb(210 199 2 / 73%);
}

.table-hover>tbody>tr.warning:hover>*,
table.dataTable.table-hover>tbody>tr.warning:hover>*{
	box-shadow: inset 0 0 0 9999px rgb(177 170 49 / 45%);
	color: white;
} */

/* Square container */
.profile-pic {
	width: 160px; /* Adjust the size as needed */
	height: 160px; /* Adjust the size as needed */
}

/* Crop image to fit square container */
.profile-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Crops the image to cover the entire container */
}

.image-input-placeholder {
	background-image: url('svg/avatars/blank.svg');
}

[data-bs-theme="dark"] .image-input-placeholder {
	background-image: url('svg/avatars/blank-dark.svg');
}

/* Styles Added by Saad */

.dashboard-top-menu{
	padding: 5px;
}

.dashboard-main-menu{
	font-family: 'Roboto';
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	margin-left: 0;
	margin-bottom: 0;
	padding-left: 0;
	justify-content: space-between;
}

.dashboard-main-menu li{
	list-style: none;
}

.dashboard-main-menu li a{
	display: block;
	font-size: 14px;
	padding: 9px 15px;
	line-height: 1;
	border-radius: 6px;
	color: #B5B5C3;
}

.dashboard-main-menu li a:hover,
.dashboard-main-menu li.active a{
	color: #fff;
	background: #3E97FF;
}


.card .card-header.right-aligned,
.card .card-header.small-header{
	position: relative;
	justify-content: end;
	text-align: right;
	flex-direction: row;
}

.card .card-header.small-header{
	text-align: left;
	justify-content: start;
}

.card .card-header.small-header span{
	position: absolute;
	bottom: -15px;
	margin-right: 0.5rem;
}

.fixed-height{
	min-height: 234px;
	max-height: 234px;
}

.cost-col .card-header{
	display: block;
}

.cost-col .card-header .card-title{
	display: block;
}

.cost-col .card-header span{
	margin-right: 6.5px !important;
}

.card .card-header{
	min-height: 50px;
}

.custom-user-list.card-header{
	justify-content: flex-end;
}

.custom-user-list.card-header .search-field{
	margin-right: 30px;
}

/*.custom-user-list.card-header .btn.btn-primary{
	background: #1BC5BD;
}*/

.custom-user-list.card-header .btn.btn-primary i{
	font-size: 2rem;
}


.custom-user-list.card-header .btn.btn-primary i.ki-plus{
	position: relative;
	top: -5px;
	left: -10px;
	opacity: 0.3;
	font-size: 1rem;
}

.custom-user-list.card-header .btn.btn-primary i.ki-plus.normal{
	position: relative;
	top: 0px;
	left: 0px;
	opacity: 1;
	font-size: 1rem;
}

.grey-background th{
	background: #F3F6F9;
	text-transform: uppercase;
}

.grey-background th:first-child{
	background: #F3F6F9;
	color: #000;
	padding-left: 2% !important;
	border-radius: 6px !important;
}

.grey-background th:last-child{
	background: #F3F6F9;
	padding-right: 2% !important;
	border-radius: 6px !important;
}

/*.btn.ngreen i{
	color: #1BC5BD;
}*/

/* Note Css */
/* Styling for Quill Editor */
#note_body {
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #fff;
	overflow-y: auto;
  }
  /* Fullscreen Styling */
  .fullscreen {
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	background-color: white;
	overflow-y: auto;
	padding: 20px;
  }
  #toolbar {
	border: 1px solid #ccc;
	border-radius: 8px 8px 0 0;
	margin-bottom: 5px;
  }
  
  /* Chips */ 
    .chip-group {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .chip {
        border: 1px solid #e5e7eb;
        background: #fafafa;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 13px;
        cursor: pointer;
        user-select: none;
    }
    .chip.active {
        background: #1b84ff;
        border-color: #1b85ffbd;
        color: #fff;
    }
    .chip:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(22, 163, 74, 0.25);
    }
    .btn-ghost {
        border: 1px dashed #d1d5db;
        background: transparent;
        border-radius: 10px;
        padding: 6px 10px;
        font-size: 12px;
        color: #6b7280;
    }
    .btn-check {
        position: absolute;
        clip: rect(0, 0, 0, 0);
        pointer-events: none;
    }
    .btn-check + label.chip {
        margin-right: 8px;
        margin-bottom: 8px;
    }
    [data-summary-for] {
        max-width: 36ch;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .btn-check:checked + label.chip {
        background: #1b84ff;
        border-color: #1b85ffbd;
        color: #fff;
    }
    .btn-check:checked + label.card {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    }
    .btn-check:checked + label.card .tile-title {
        color: var(--bs-primary) !important;
    }
    
    .btn-check + label.card {
        cursor: pointer;
        border: 1px solid #eef0f4;
        border-radius: 0.75rem;
        transition: border-color 0.15s, box-shadow 0.15s;
    }
    
    .tile-icon {
        width: 2.5rem;
        height: 2.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .card-header .card-toolbar {
        transition: transform 0.3s ease;
    }
    .rotate-180 {
        transform: rotate(180deg);
    }
    
    #budgetSlider.noUi-touch-area {
        height: 8px;
        border: 0;
        box-shadow: none;
        background: #f3f4f6;
        cursor: pointer;
    }
    #budgetSlider .noUi-connect {
        background: #0144c9;
    }
    #budgetSlider .noUi-handle {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }
    #budgetSlider .noUi-handle:after,
    #budgetSlider .noUi-handle:before,
    #budgetSlider .noUi-marker {
        background: #cbd5e1;
    }
    #budgetSlider .noUi-pips {
        margin-top: 14px;
        color: #9aa3af;
    }
    #budgetSlider .noUi-marker-large {
        height: 12px;
    }
    #budgetSlider .noUi-marker-sub {
        height: 7px;
    }
    #budgetSlider .noUi-value {
        font-size: 12px;
        font-weight: 500;
        transform: translateX(-50%);
    }
    #kt_tab_pane_2 {
        --chip-card-shadow: 0 8px 24px rgba(2, 28, 51, 0.08), 0 1px 3px rgba(2, 28, 51, 0.06);
        --chip-card-shadow-hover: 0 10px 28px rgba(2, 28, 51, 0.12), 0 2px 5px rgba(2, 28, 51, 0.08);
        --chip-card-shadow-checked: 0 12px 30px rgba(27, 132, 255, 0.28), 0 2px 6px rgba(27, 132, 255, 0.16);
    }
    #kt_tab_pane_2 .chip-group {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    #kt_tab_pane_2 .btn-check {
        position: absolute;
        clip: rect(0, 0, 0, 0);
        pointer-events: none;
    }
    #kt_tab_pane_2 .btn-check + label.chip,
    #kt_tab_pane_2 .chip {
        background: #fff;
        border: 1px solid #eef0f4;
        box-shadow: var(--chip-card-shadow);
        padding: 10px 16px;
        border-radius: 14px;
        font-size: 13px;
        line-height: 1;
        cursor: pointer;
        user-select: none;
        transition: transform 0.12s, box-shadow 0.12s, border-color 0.12s, background-color 0.12s, color 0.12s;
    }
    #kt_tab_pane_2 .btn-check + label.chip {
        margin-right: 8px;
        margin-bottom: 8px;
    }
    #kt_tab_pane_2 .btn-check + label.chip:hover,
    #kt_tab_pane_2 .chip:hover {
        transform: translateY(-1px);
        box-shadow: var(--chip-card-shadow-hover);
    }
    #kt_tab_pane_2 .btn-check + label.chip:focus-visible,
    #kt_tab_pane_2 .chip:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(27, 132, 255, 0.25);
    }
    #kt_tab_pane_2 .btn-check:checked + label.chip,
    #kt_tab_pane_2 .chip.active {
        background: #1b84ff;
        border-color: #1b85ffbd;
        color: #fff;
        box-shadow: var(--chip-card-shadow-checked);
    }
    #kt_tab_pane_2 .btn-check + label.chip:active,
    #kt_tab_pane_2 .chip:active {
        transform: translateY(0);
    }

