:root {
    --ink-950: #0f172a;
    --ink-900: #1e293b;
    --ink-800: #334155;
    --ink-700: #475569;
    --ink-600: #64748b;
    --ink-500: #94a3b8;
    --ink-400: #cbd5e1;
    --ink-300: #e2e8f0;
    --ink-200: #d8e0ea;
    --ink-100: #eef2f7;
    --ink-50: #f4f7fb;

    --sidebar-bg: #0c2238;
    --sidebar-head: #081a2c;
    --sidebar-text: rgba(255, 255, 255, 0.78);
    --sidebar-text-hover: #ffffff;
    --sidebar-hover: rgba(255, 255, 255, 0.07);
    --sidebar-active: rgba(34, 211, 238, 0.12);
    --sidebar-accent: #22d3ee;

    --brand-700: #163a52;
    --brand-600: #1e4d6b;
    --brand-500: #2a6a94;
    --brand-100: #e0f2fe;

    --sky-600: #0284c7;
    --sky-100: #e0f2fe;
    --teal-600: #0d9488;
    --teal-100: #ccfbf1;
    --violet-600: #7c3aed;
    --violet-100: #ede9fe;
    --orange-600: #ea580c;
    --orange-100: #ffedd5;
    --pink-600: #db2777;
    --pink-100: #fce7f3;

    --green-700: #047857;
    --green-100: #d1fae5;

    --rose-600: #dc2626;
    --rose-100: #fee2e2;

    --amber-700: #c2410c;
    --amber-100: #ffedd5;

    --page-bg: #e4eaf2;

    --sidebar-w: 252px;
    --brand-bar-h: 68px;
    --header-h: var(--brand-bar-h);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(12, 34, 56, 0.06);
    --shadow-md: 0 6px 20px rgba(12, 34, 56, 0.08);
    --shadow-lg: 0 12px 32px rgba(12, 34, 56, 0.12);
    --transition: 0.15s ease;

    --bs-primary: var(--brand-600);
    --bs-primary-rgb: 30, 77, 107;
    --bs-danger: var(--rose-600);
    --bs-danger-rgb: 220, 38, 38;
    --bs-success: var(--green-700);
    --bs-success-rgb: 4, 120, 87;
    --bs-body-font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
    --bs-body-color: var(--ink-700);
    --bs-border-color: var(--ink-200);
    --bs-border-radius: var(--radius-sm);
    --bs-link-color: var(--brand-600);
    --bs-link-hover-color: var(--brand-700);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.admin-body {
    font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
    color: var(--ink-700);
    background: var(--page-bg);
    min-height: 100vh;
    margin: 0;
    padding: 0 !important;
    display: flex;
    -webkit-font-smoothing: antialiased;
}

.admin-sidebar.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100dvh;
    background: var(--sidebar-bg) !important;
    box-shadow: 4px 0 24px rgba(8, 26, 44, 0.18) !important;
    border-right: none;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-sidebar .navbar-image {
    background: var(--sidebar-head);
    height: var(--brand-bar-h);
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    width: 100%;
}

.sidebar-brand:hover {
    color: inherit;
    opacity: 0.92;
}

.sidebar-brand__logo {
    height: 38px;
    width: auto;
    max-width: 180px;
    max-height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.admin-sidebar .navbar-image img {
    max-height: none;
    width: auto;
}

.admin-sidebar .navbar-section {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 10px 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.admin-sidebar .navbar-section::-webkit-scrollbar {
    width: 4px;
}

.admin-sidebar .navbar-section::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.admin-sidebar .navbar-section > div {
    padding: 0;
    border-bottom: none;
    margin-bottom: 2px;
    border-radius: var(--radius-sm);
    overflow: visible;
}

.admin-sidebar .navbar-section > div.dropend {
    position: static;
}

.admin-sidebar .navbar-section .fcucuwef {
    color: var(--sidebar-text) !important;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 450;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
    letter-spacing: 0.01em;
}

.admin-sidebar .navbar-section .fcucuwef i {
    font-size: 12px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--sidebar-accent);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}

.admin-sidebar .navbar-section .fcucuwef:hover {
    background: var(--sidebar-hover);
    color: var(--sidebar-text-hover) !important;
}

.admin-sidebar .navbar-section .fcucuwef:hover i {
    background: rgba(34, 211, 238, 0.18);
    color: #67e8f9;
}

.admin-sidebar .navbar-section .active {
    background: transparent !important;
}

.admin-sidebar .navbar-section .active .fcucuwef,
.admin-sidebar .navbar-section .dropend.active > .fcucuwef {
    background: var(--sidebar-active) !important;
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--sidebar-accent);
}

.admin-sidebar .navbar-section .active .fcucuwef i,
.admin-sidebar .navbar-section .dropend.active > .fcucuwef i {
    background: rgba(34, 211, 238, 0.22) !important;
    color: #a5f3fc !important;
}

.admin-sidebar .navbar-section .dropdown-menu .dropdown-item.active,
.admin-sidebar .navbar-section .dropdown-menu a.dropdown-item.active {
    background: var(--brand-100) !important;
    color: var(--brand-600) !important;
    font-weight: 600;
}

.admin-sidebar .navbar-section .dropend .dropdown-toggle::after {
    position: absolute;
    right: 12px;
    opacity: 0.45;
    font-size: 10px;
    filter: brightness(2);
}

.admin-sidebar .dropdown-menu {
    background: #ffffff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    min-width: 220px;
    z-index: 1050;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--ink-200) transparent;
}

.admin-sidebar .dropdown-menu a,
.admin-sidebar .dropdown-menu .dropdown-item {
    color: var(--ink-600) !important;
    font-size: 13px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.admin-sidebar .dropdown-menu a:hover,
.admin-sidebar .dropdown-menu .dropdown-item:hover,
.admin-sidebar .dropdown-menu .dropdown-item:focus {
    background: var(--brand-100);
    color: var(--brand-600) !important;
}

.admin-wrapper {
    margin-left: var(--sidebar-w);
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-header.main-header-website {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #ffffff;
    border-bottom: 2px solid var(--brand-600);
    margin-bottom: 0;
    box-shadow: var(--shadow-sm);
}

.admin-header .page-header-content {
    padding: 0 28px;
    height: var(--header-h);
    display: flex;
    align-items: center;
}

.admin-header .page-title {
    width: 100%;
    align-items: center;
}

.admin-header h4,
.admin-portal-title {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
    text-transform: none;
}

.admin-header .btn-outline-danger {
    color: #fff;
    background: var(--rose-600);
    border-color: var(--rose-600);
    font-size: 12.5px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    transition: all var(--transition);
}

.admin-header .btn-outline-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: #fff;
}

.admin-header .btn-outline-success {
    color: #fff;
    background: var(--green-700);
    border-color: var(--green-700);
    font-size: 12.5px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    transition: all var(--transition);
}

.admin-header .btn-outline-success:hover {
    background: #065f46;
    border-color: #065f46;
    color: #fff;
}

.admin-header .dropdown-toggle {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-700);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.admin-header .dropdown-toggle:hover {
    background: var(--ink-100);
}

.admin-header .dropdown-menu {
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 6px;
    font-size: 13px;
}

.admin-header .dropdown-menu .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--ink-700);
}

.admin-header .dropdown-menu .dropdown-item:hover {
    background: var(--ink-100);
    color: #1e4d6b;
}

.admin-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border: 1px solid var(--ink-200);
    border-radius: 24px;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-700);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.admin-user-btn:hover,
.admin-user-btn:focus {
    background: var(--ink-50);
    border-color: #cbd5e1;
    color: var(--ink-800);
}

.admin-user-btn::after {
    margin-left: 2px;
    font-size: 10px;
    color: #94a3b8;
}

.admin-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--teal-600);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 6px;
    border: none;
    background: var(--rose-600);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, filter 0.15s ease;
}

.admin-logout-btn:hover {
    background: #b91c1c;
    color: #fff;
    filter: brightness(1.05);
}

.admin-logout-btn i {
    font-size: 14px;
}

.admin-header .btn-danger {
    background: transparent;
    border-color: transparent;
}

.admin-content {
    flex: 1;
    padding: 24px 28px 32px;
}

.page-content {
    width: 100% !important;
    padding-left: 0 !important;
}

.borderCs {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--brand-600);
    box-shadow: var(--shadow-sm);
    padding: 0;
    overflow: hidden;
}

.agent-header-website {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--brand-600);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.agent-page-header-content {
    height: auto;
    min-height: 56px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
}

.agent-page-title a {
    color: var(--brand-600) !important;
    transition: color var(--transition);
}

.agent-page-title a:hover {
    color: #2746d7 !important;
}

.agent-page-title .ag-para {
    color: var(--ink-600);
    font-size: 13.5px;
}

.content-wrapper {
    border-radius: var(--radius-lg) !important;
    border-color: var(--ink-200) !important;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.second-sidebar {
    border: 1px solid var(--ink-200);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.topafnqwef {
    border-bottom: 1px solid #bae6fd;
    background: var(--sky-100);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-700);
    border-left: 4px solid var(--brand-600);
}

.wrg4gw24232q .nav-link {
    font-size: 13.5px;
    color: var(--ink-600);
    padding: 11px 16px;
    transition: background var(--transition), color var(--transition);
}

.wrg4gw24232q .nav-link:hover {
    background: var(--ink-50);
    color: var(--ink-800);
}

.wrg4gw24232q .nav-link.active {
    background: var(--brand-100);
    color: #2746d7;
    font-weight: 500;
}

.wrg4gw24232q .nav-link i {
    color: var(--blue-500) !important;
}

.agent-list-box,
.add-agent-box {
    border-radius: var(--radius-lg) !important;
    border-color: var(--ink-200) !important;
    box-shadow: var(--shadow-sm) !important;
    margin: 0 0 20px;
}

.add-agent-title {
    background: var(--ink-50);
    border-bottom: 1px solid var(--ink-200);
    font-weight: 600;
    color: var(--ink-800);
}

.heading {
    font-weight: 600;
    color: var(--ink-900);
}

.title-white-labels {
    color: var(--ink-600) !important;
    font-weight: 500;
}

.label-number {
    background: var(--brand-600) !important;
    border-radius: 20px;
    padding: 2px 8px;
    font-weight: 500;
}

.btn-primary {
    background: #1e4d6b !important;
    border-color: #1e4d6b !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 500;
    font-size: 13.5px;
    transition: background var(--transition), border-color var(--transition);
}

.btn-primary:hover {
    background: #163a52 !important;
    border-color: #163a52 !important;
}

.btn-danger {
    background: #b91c1c !important;
    border-color: #b91c1c !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 500;
    font-size: 13.5px;
}

.btn-danger:hover {
    background: #991b1b !important;
    border-color: #991b1b !important;
}

.btn-primary:active,
.btn-danger:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: var(--ink-100) !important;
    border-color: var(--ink-200) !important;
    color: var(--ink-700) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 500;
    font-size: 13px;
}

.btn-secondary:hover {
    background: var(--ink-200) !important;
    color: var(--ink-800) !important;
}

.btn-success {
    background: var(--green-700) !important;
    border-color: var(--green-700) !important;
    border-radius: var(--radius-sm) !important;
}

.btn-success:hover {
    background: var(--green-700) !important;
    border-color: var(--green-700) !important;
}

.add-agent button,
.input-button button,
.edit-button,
.balance-sheet,
.status {
    border-radius: var(--radius-sm) !important;
}

.add-agent button,
.edit-button {
    background-color: #1e4d6b !important;
    font-weight: 500;
}

.add-agent button:hover,
.edit-button:hover {
    background-color: #163a52 !important;
}

.admin-search-btn,
.input-button button {
    width: 40px;
    height: 38px;
    min-width: 40px;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1e4d6b !important;
    border: 1px solid #1e4d6b !important;
    border-radius: 6px !important;
    color: #fff !important;
    cursor: pointer;
    transition: background 0.15s ease;
}

.admin-search-btn:hover,
.input-button button:hover {
    background: #163a52 !important;
    border-color: #163a52 !important;
}

.input-button {
    margin-left: 0 !important;
}

.agent-header-website .input-keyword input,
.agent-header-website .input-keyword select,
.agent-page-header-content .input-keyword input,
.agent-page-header-content .input-keyword select {
    height: 38px;
    min-height: 38px;
    border: 1px solid #cfd8e3 !important;
    border-radius: 6px !important;
    font-size: 13px;
    padding: 6px 10px;
    width: 100%;
    background: #fff;
    color: #334155;
}

.agent-header-website .input-keyword input:focus,
.agent-header-website .input-keyword select:focus,
.agent-page-header-content .input-keyword input:focus,
.agent-page-header-content .input-keyword select:focus {
    border-color: #1e4d6b !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 77, 107, 0.1);
}

.agent-header-website .btn-success {
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 500;
    background: #047857 !important;
    border-color: #047857 !important;
    border-radius: 6px !important;
    display: inline-flex;
    align-items: center;
}

.agent-header-website .btn-success:hover {
    background: #065f46 !important;
    border-color: #065f46 !important;
}

.ofc-status-row {
    row-gap: 10px;
}

.ofc-status-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ofc-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.ofc-count-pill--confirmed { background: #047857; }
.ofc-count-pill--cancel { background: #b91c1c; }
.ofc-count-pill--reject { background: #9f1239; }
.ofc-count-pill--pending { background: #b45309; }
.ofc-count-pill--hold { background: #1e4d6b; }

.flight-status-div .title-flight {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.balance-sheet,
.status {
    background-color: var(--green-700) !important;
}

.form-control,
.form-select,
.agent-selects,
.name-box {
    border: 1px solid var(--ink-200) !important;
    border-radius: var(--radius-sm) !important;
    font-size: 13.5px;
    color: var(--ink-700);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control.custom {
    border-color: var(--ink-200) !important;
}

.form-control:focus,
.form-select:focus,
.agent-selects:focus,
.name-box:focus {
    border-color: var(--blue-500) !important;
    box-shadow: 0 0 0 3px rgba(194, 120, 58, 0.12) !important;
    outline: none;
}

.agent-selects,
.name-box {
    background: var(--ink-50) !important;
}

.input-keyword input,
.input-keyword select {
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    transition: border-color var(--transition);
}

.input-keyword input:focus,
.input-keyword select:focus {
    border-color: var(--blue-500);
    outline: none;
}

.table {
    font-size: 13.5px;
    color: var(--ink-700);
    margin-bottom: 0;
}

.table thead th,
.table thead td {
    background: var(--ink-50);
    color: var(--ink-600);
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--ink-200);
    padding: 12px 16px;
    white-space: nowrap;
}

.table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    border-color: var(--ink-100);
}

.table tbody tr:hover {
    background: var(--ink-50);
}

.agent-list-table th {
    font-size: 12.5px !important;
    font-weight: 600 !important;
}

.agent-list-table tbody td {
    font-size: 13px;
}

.badge {
    font-weight: 500;
    font-size: 11.5px;
    padding: 4px 8px;
    border-radius: 20px;
}

.modal-content {
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: var(--ink-50);
    border-bottom: 1px solid var(--ink-200);
    padding: 16px 20px;
}

.modal-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--ink-900);
}

.modal-footer {
    border-top: 1px solid var(--ink-200);
    padding: 14px 20px;
}

.cards {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.cards h2 {
    color: var(--ink-900);
    font-weight: 700;
}

.cards-title {
    color: var(--ink-500);
    font-size: 13px;
    font-weight: 500;
}

.wallet-alert {
    background: var(--rose-600) !important;
    border-radius: 20px;
    font-size: 12px;
    padding: 4px 10px;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    border: 1px solid var(--ink-200) !important;
    border-radius: var(--radius-sm) !important;
    min-height: 38px;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--blue-500) !important;
    box-shadow: 0 0 0 3px rgba(194, 120, 58, 0.12);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--brand-600) !important;
}

.pagination .page-link {
    color: var(--ink-600);
    border-color: var(--ink-200);
    font-size: 13px;
    border-radius: var(--radius-sm);
    margin: 0 2px;
}

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

.pagination .page-link:hover {
    background: var(--brand-100);
    color: #2746d7;
    border-color: var(--blue-500);
}

.nav-tabs {
    border-bottom-color: var(--ink-200);
}

.nav-tabs .nav-link {
    color: var(--ink-500);
    font-size: 13.5px;
    font-weight: 500;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 16px;
    transition: color var(--transition), border-color var(--transition);
}

.nav-tabs .nav-link:hover {
    color: var(--ink-800);
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--brand-600);
    background: transparent;
    border-bottom-color: var(--blue-500);
}

.alert {
    border-radius: var(--radius-md);
    font-size: 13.5px;
    border: none;
}

.toast-success {
    background-color: var(--green-700) !important;
}

#toast-container > .toast-error {
    background-color: var(--rose-600) !important;
}

.danger-text {
    color: var(--rose-600) !important;
}

a {
    color: var(--brand-600);
}

a:hover {
    color: #2746d7;
}

.container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991px) {
    :root {
        --sidebar-w: 72px;
    }

    .admin-sidebar .navbar-image {
        height: var(--brand-bar-h);
        padding: 0 8px;
    }

    .sidebar-brand__logo {
        max-width: 48px;
        height: 34px;
        max-height: 36px;
    }

    .admin-logout-btn span {
        display: none;
    }

    .admin-user-name {
        display: none;
    }

    .admin-user-btn {
        padding: 4px;
        border-radius: 50%;
    }

    .admin-user-btn::after {
        display: none;
    }

    .admin-sidebar .navbar-section .fcucuwef {
        font-size: 0;
        justify-content: center;
        padding: 12px 8px;
    }

    .admin-sidebar .navbar-section .fcucuwef i {
        font-size: 16px;
        width: auto;
    }

    .admin-sidebar .navbar-section .dropend .dropdown-toggle::after {
        display: none;
    }

    .admin-content {
        padding: 16px;
    }

    .admin-header .page-header-content {
        padding: 0 16px;
    }
}

body.login-body {
    font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0c2238;
}

body.login-body--image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-banner {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
    pointer-events: none;
}

.login-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(12, 34, 56, 0.42);
}

.login-card-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
}

.login-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 24px 48px rgba(8, 26, 44, 0.28);
}

.login-card__logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-card__logo img {
    height: 52px;
    object-fit: contain;
}

.login-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-100);
    color: var(--brand-600);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.login-card h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ink-950);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.login-card__sub {
    font-size: 14px;
    color: var(--ink-600);
    margin-bottom: 24px;
    line-height: 1.5;
}

.login-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: 8px;
    display: block;
}

.login-input-wrap {
    position: relative;
    margin-bottom: 16px;
}

.login-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-500);
    font-size: 14px;
}

.login-input-wrap .form-control {
    height: 48px;
    padding-left: 42px;
    border: 1.5px solid var(--ink-200);
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
}

.login-input-wrap .form-control:focus {
    border-color: var(--brand-600);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.12);
}

.login-error {
    color: var(--rose-600);
    font-size: 13px;
    margin: -8px 0 12px;
}

.login-card .btn-login {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #4361ee, #3a86ff);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.login-card .btn-login:hover {
    background: linear-gradient(135deg, #2746d7, #2563eb);
    box-shadow: 0 8px 24px rgba(67, 97, 238, 0.35);
    color: #fff;
}

.login-footer-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    margin: 16px 0 0;
}

.save-btn,
.export-btn,
.flight-setting-btn {
    background-color: var(--brand-600) !important;
    border-color: transparent !important;
    border-radius: var(--radius-sm) !important;
    color: #fff !important;
    font-weight: 500;
}

.save-btn:hover,
.export-btn:hover,
.flight-setting-btn:hover {
    background-color: #2746d7 !important;
}

.flight-booking-page-title a {
    color: var(--brand-600) !important;
}

.flight-booking-page-title a:hover {
    color: #2746d7 !important;
}

.flight-status-div,
.flight-booking-table {
    border-radius: var(--radius-lg) !important;
    border-color: var(--ink-200) !important;
    box-shadow: var(--shadow-sm) !important;
}

.flight-booking-table {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

.bluish-bg {
    background: var(--brand-100) !important;
    border-radius: var(--radius-md);
    border: 1px solid var(--ink-200);
}

.cancel-btn {
    background: var(--ink-50) !important;
    border-color: var(--ink-200) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--ink-700) !important;
}

.input-box-div {
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--ink-200) !important;
    box-shadow: var(--shadow-md) !important;
}

.agent-lables,
.agent-status-label,
.heading-status,
.status-para,
.title-flight {
    color: var(--ink-700) !important;
}

.agent-form-info,
.agent-status-input {
    border-radius: var(--radius-sm) !important;
}

.agent-status-input:focus {
    border-color: var(--blue-500) !important;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.12) !important;
}

.agent-header-website,
.agent-list-box,
.content-wrapper,
.borderCs {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}

.admin-header.main-header-website {
    background: #fff;
    border-bottom: 2px solid var(--brand-600);
}

.topafnqwef {
    background: #fafbfc !important;
    border-left: 3px solid #1e4d6b;
    font-weight: 600 !important;
    color: var(--ink-900) !important;
}

.agent-list-header {
    background: #fafbfc !important;
    border-bottom: 1px solid var(--ink-200) !important;
}

.add-agent-title {
    background: #fafbfc !important;
    border-bottom: 1px solid var(--ink-200) !important;
}

.flight-status-div {
    border-top: 3px solid #1e4d6b !important;
}

.label-number {
    background: #1e4d6b !important;
}

.status {
    background: #047857 !important;
}

.balance-sheet {
    background: #0d9488 !important;
}

@media (max-width: 768px) {
    .login-card {
        padding: 28px 22px;
    }
}
