/*
|--------------------------------------------------------------------------
| Friendly-Coop Admin Interface V2
| Shared futuristic presentation layer for the complete admin workspace.
|--------------------------------------------------------------------------
*/

:root {
    --fca-navy-950: #06172b;
    --fca-navy-900: #0b223d;
    --fca-navy-800: #18375d;
    --fca-navy-700: #245486;
    --fca-navy-600: #3472a8;
    --fca-blue-400: #72a6d2;
    --fca-ice-100: #e8f1fa;
    --fca-ice-50: #f5f9fd;
    --fca-cyan: #6ce5d1;
    --fca-success: #45dda1;
    --fca-warning: #ffc766;
    --fca-danger: #ff7185;
    --fca-ink: #13263d;
    --fca-muted: #62758b;
    --fca-border: rgba(24, 55, 93, 0.14);
    --fca-sidebar-width: 270px;
    --fca-topbar-height: 86px;
    --fca-radius-lg: 24px;
    --fca-radius-md: 17px;
    --fca-shadow-sm: 0 12px 30px rgba(9, 32, 57, 0.08);
    --fca-shadow-lg: 0 26px 65px rgba(9, 32, 57, 0.15);
}

body.admin-futuristic {
    min-height: 100vh;
    color: var(--fca-ink);
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at 8% 8%, rgba(72, 130, 183, 0.15), transparent 24rem),
        radial-gradient(circle at 94% 88%, rgba(24, 55, 93, 0.11), transparent 28rem),
        linear-gradient(rgba(24, 55, 93, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 55, 93, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #f8fbfe 0%, #edf4fa 100%);
    background-attachment: fixed;
    background-size: auto, auto, 30px 30px, 30px 30px, auto;
}

body.admin-futuristic ::selection {
    color: #ffffff;
    background: var(--fca-navy-700);
}

body.admin-futuristic :is(a, button, input, select, textarea):focus-visible {
    outline: 3px solid rgba(71, 146, 205, 0.42) !important;
    outline-offset: 3px !important;
}

/* Topbar */
body.admin-futuristic .topbar {
    height: var(--fca-topbar-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(24, 55, 93, 0.12);
    box-shadow: 0 12px 34px rgba(7, 26, 48, 0.075);
    backdrop-filter: blur(18px);
}

body.admin-futuristic .topbar .topbar-left {
    display: flex;
    width: var(--fca-sidebar-width);
    height: var(--fca-topbar-height);
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(24, 55, 93, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 55, 93, 0.025) 1px, transparent 1px),
        rgba(255, 255, 255, 0.98);
    background-size: 24px 24px, 24px 24px, auto;
    border-right: 1px solid rgba(24, 55, 93, 0.12);
    transition: width 220ms ease;
}

body.admin-futuristic .topbar-left .text-center {
    position: relative;
    width: 100%;
}

body.admin-futuristic .topbar-left .text-center::after {
    position: absolute;
    right: 28px;
    bottom: -15px;
    left: 28px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--fca-blue-400), transparent);
}

body.admin-futuristic .topbar .logo {
    display: inline-flex;
    height: var(--fca-topbar-height);
    align-items: center;
    justify-content: center;
    line-height: 1;
}

body.admin-futuristic .topbar .logo img {
    display: block;
    width: 196px;
    height: 52px;
    object-fit: contain;
    object-position: center;
}

body.admin-futuristic .topbar .logo-sm img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

body.admin-futuristic .navbar-default {
    height: var(--fca-topbar-height);
    min-height: var(--fca-topbar-height);
    margin-left: var(--fca-sidebar-width);
    color: var(--fca-ink);
    background: rgba(255, 255, 255, 0.9);
    transition: margin-left 220ms ease;
}

body.admin-futuristic .navbar-default > .container-fluid {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
}

body.admin-futuristic .navbar-default .menu-left,
body.admin-futuristic .navbar-default .navbar-right {
    display: flex;
    min-width: 0;
    align-items: center;
    margin: 0;
}

body.admin-futuristic .button-menu-mobile {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin: 0 16px 0 0;
    padding: 0;
    place-items: center;
    color: var(--fca-navy-800);
    background: linear-gradient(145deg, #ffffff, #eef5fb);
    border: 1px solid rgba(24, 55, 93, 0.14);
    border-radius: 14px;
    box-shadow: var(--fca-shadow-sm);
}

body.admin-futuristic .button-menu-mobile:hover {
    color: #ffffff;
    background: var(--fca-navy-800);
}

body.admin-futuristic .admin-topbar-context {
    display: flex;
    min-width: 270px;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

body.admin-futuristic .admin-topbar-kicker {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 3px;
    color: #71869c;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.admin-futuristic .admin-topbar-kicker > span {
    width: 7px;
    height: 7px;
    background: var(--fca-success);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(69, 221, 161, 0.12), 0 0 14px rgba(69, 221, 161, 0.75);
}

body.admin-futuristic .admin-topbar-context strong {
    overflow: hidden;
    color: var(--fca-navy-800);
    font-size: 1.02rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.admin-futuristic .admin-topbar-context small {
    overflow: hidden;
    margin-top: 3px;
    color: var(--fca-muted);
    font-size: 0.7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.admin-futuristic .app-search {
    margin-left: 14px;
}

body.admin-futuristic .search-bar {
    width: 220px;
    height: 44px;
    margin: 0;
    padding: 0 48px 0 18px;
    color: var(--fca-ink) !important;
    background: #f4f8fc !important;
    border: 1px solid rgba(24, 55, 93, 0.12) !important;
    border-radius: 14px;
}

body.admin-futuristic .app-search a {
    top: 5px;
    right: 5px;
    left: auto;
    color: var(--fca-navy-700);
}

body.admin-futuristic .app-search input::placeholder {
    color: #899aab !important;
}

body.admin-futuristic .navbar-default .nav > li > a {
    color: var(--fca-navy-800) !important;
}

body.admin-futuristic .notification-icon-box {
    display: grid;
    width: 44px;
    height: 44px;
    margin-right: 10px;
    padding: 0 !important;
    place-items: center;
    background: linear-gradient(145deg, #ffffff, #eef5fb);
    border: 1px solid rgba(24, 55, 93, 0.13);
    border-radius: 14px;
    box-shadow: var(--fca-shadow-sm);
}

body.admin-futuristic .profile {
    display: flex;
    min-width: 196px;
    height: 58px;
    align-items: center;
    gap: 10px;
    padding: 7px 13px !important;
    background: #ffffff;
    border: 1px solid rgba(24, 55, 93, 0.12);
    border-radius: 16px;
    box-shadow: var(--fca-shadow-sm);
}

body.admin-futuristic .profile img {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(24, 55, 93, 0.18);
}

body.admin-futuristic .profile .profile-username {
    display: grid;
    min-width: 0;
    flex: 1;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0;
    line-height: 1.1;
}

body.admin-futuristic .profile-username strong {
    overflow: hidden;
    color: var(--fca-ink);
    font-size: 0.78rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.admin-futuristic .profile-username small {
    overflow: hidden;
    grid-column: 1;
    margin-top: 4px;
    color: var(--fca-muted);
    font-size: 0.62rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.admin-futuristic .profile-username > .mdi {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
}

body.admin-futuristic .dropdown-menu {
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(24, 55, 93, 0.12);
    border-radius: 14px;
    box-shadow: var(--fca-shadow-lg);
}

body.admin-futuristic .dropdown-menu .dropdown-item {
    padding: 10px 12px;
    color: var(--fca-ink);
    font-weight: 700;
    border-radius: 9px;
}

body.admin-futuristic .dropdown-menu .dropdown-item:hover {
    color: var(--fca-navy-800);
    background: var(--fca-ice-100) !important;
}

/* Sidebar */
body.admin-futuristic .side-menu,
body.admin-futuristic .side-menu.left {
    width: var(--fca-sidebar-width);
}

body.admin-futuristic .side-menu.left {
    top: var(--fca-topbar-height);
    background:
        linear-gradient(rgba(24, 55, 93, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 55, 93, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 253, 0.98));
    background-size: 24px 24px, 24px 24px, auto;
    border-right: 1px solid rgba(24, 55, 93, 0.14);
    box-shadow: 16px 0 42px rgba(7, 26, 48, 0.055);
}

body.admin-futuristic.fixed-left .side-menu.left {
    margin-bottom: calc(var(--fca-topbar-height) * -1);
    padding-bottom: var(--fca-topbar-height);
}

body.admin-futuristic .sidebar-inner {
    padding: 18px 14px 110px;
}

body.admin-futuristic .user-details {
    position: relative;
    display: grid;
    min-height: 94px;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    margin: 0 2px 20px;
    padding: 15px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 96% 4%, rgba(114, 166, 210, 0.36), transparent 42%),
        linear-gradient(145deg, var(--fca-navy-950), var(--fca-navy-800));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(7, 27, 50, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.admin-futuristic .user-details::after {
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 120px;
    height: 120px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

body.admin-futuristic .admin-sidebar-avatar {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
}

body.admin-futuristic .user-details img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 0 0 1px rgba(114, 166, 210, 0.55);
}

body.admin-futuristic .admin-presence-dot {
    position: absolute;
    right: -2px;
    bottom: 2px;
    z-index: 2;
    width: 13px;
    height: 13px;
    background: var(--fca-success);
    border: 3px solid var(--fca-navy-900);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(69, 221, 161, 0.8);
}

body.admin-futuristic .user-details .user-info {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: left;
}

body.admin-futuristic .user-details .user-info a.dropdown-toggle {
    overflow: hidden;
    margin: 0 0 6px;
    padding: 0;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.admin-futuristic .admin-role-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #b9d1e7;
    font-size: 0.62rem;
    font-weight: 700;
    white-space: nowrap;
}

body.admin-futuristic .admin-role-badge i {
    color: var(--fca-cyan);
}

body.admin-futuristic #sidebar-menu {
    padding-bottom: 20px;
    background: transparent;
}

body.admin-futuristic #sidebar-menu .menu-title {
    margin: 18px 13px 7px !important;
    padding: 0;
    color: #8193a6;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

body.admin-futuristic #sidebar-menu > ul > li > a {
    display: flex;
    height: 48px !important;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
    padding: 8px 11px;
    color: #50657b;
    font-size: 0.77rem;
    font-weight: 750;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body.admin-futuristic #sidebar-menu > ul > li > a > i {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    margin: 0;
    place-items: center;
    color: var(--fca-navy-700);
    font-size: 0.9rem;
    background: rgba(232, 241, 250, 0.86);
    border: 1px solid rgba(24, 55, 93, 0.08);
    border-radius: 10px;
}

body.admin-futuristic #sidebar-menu > ul > li > a > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.admin-futuristic #sidebar-menu > ul > li > a:hover {
    color: var(--fca-navy-800);
    background: rgba(232, 241, 250, 0.75);
    border-color: rgba(24, 55, 93, 0.09);
    transform: translateX(3px);
}

body.admin-futuristic #sidebar-menu > ul > li > a.active {
    color: #ffffff;
    background:
        radial-gradient(circle at 92% 12%, rgba(114, 166, 210, 0.34), transparent 38%),
        linear-gradient(135deg, var(--fca-navy-900), var(--fca-navy-700));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 13px 26px rgba(10, 35, 63, 0.18);
}

body.admin-futuristic #sidebar-menu > ul > li > a.active > i {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Page shell */
body.admin-futuristic .content-page {
    min-height: 100vh;
    margin-left: var(--fca-sidebar-width);
    overflow: visible;
}

body.admin-futuristic .content-page > .content {
    min-height: calc(100vh - var(--fca-topbar-height));
    margin-top: var(--fca-topbar-height);
    margin-bottom: 54px;
    padding: 28px 24px 44px;
}

body.admin-futuristic .page-header-title {
    position: relative;
    min-height: 176px;
    margin: -28px -5px 0;
    padding: 40px 34px 96px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 20%, rgba(114, 166, 210, 0.2), transparent 25rem),
        linear-gradient(110deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 254, 0.98) 70%, rgba(24, 55, 93, 0.96) 100%);
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid rgba(24, 55, 93, 0.1);
}

body.admin-futuristic .page-header-title::before {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 11px;
    color: #74889c;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    content: "Friendly-Coop administration";
}

body.admin-futuristic .page-header-title::after {
    position: absolute;
    right: 42px;
    bottom: -94px;
    width: 230px;
    height: 230px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.025);
}

body.admin-futuristic .page-header-title .page-title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--fca-navy-800);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 900;
    letter-spacing: -0.045em;
}

body.admin-futuristic .page-content-wrapper {
    position: relative;
    z-index: 3;
    margin-top: -74px;
}

body.admin-futuristic .page-content-wrapper > .container-fluid {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Shared content cards */
body.admin-futuristic .page-content-wrapper .card {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 92% 4%, rgba(114, 166, 210, 0.36), transparent 38%),
        linear-gradient(145deg, var(--fca-navy-900), var(--fca-navy-800) 56%, #2f679b 100%);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--fca-radius-lg);
    box-shadow: var(--fca-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.admin-futuristic .page-content-wrapper .card::after {
    position: absolute;
    right: -80px;
    bottom: -115px;
    width: 240px;
    height: 240px;
    pointer-events: none;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

body.admin-futuristic .page-content-wrapper .card-body {
    position: relative;
    z-index: 1;
    padding: 24px;
}

body.admin-futuristic .page-content-wrapper .card .card {
    background: rgba(5, 25, 47, 0.34);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 34px rgba(4, 19, 36, 0.16);
}

body.admin-futuristic .page-content-wrapper .card :is(h1, h2, h3, h4, h5, h6),
body.admin-futuristic .page-content-wrapper .card .card-title {
    color: #ffffff;
    font-weight: 850;
}

body.admin-futuristic .page-content-wrapper .card > .card-body > h4:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px !important;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

body.admin-futuristic .page-content-wrapper .card > .card-body > h4:first-child::before {
    width: 9px;
    height: 9px;
    content: "";
    background: var(--fca-cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(108, 229, 209, 0.1), 0 0 17px rgba(108, 229, 209, 0.65);
}

body.admin-futuristic .page-content-wrapper .card p,
body.admin-futuristic .page-content-wrapper .card .text-muted,
body.admin-futuristic .page-content-wrapper .card .form-text,
body.admin-futuristic .page-content-wrapper .card small {
    color: #c4d6e7 !important;
}

body.admin-futuristic .page-content-wrapper .row {
    row-gap: 22px;
}

/* Tables and DataTables */
body.admin-futuristic .table-responsive {
    margin-top: 18px;
    padding: 9px;
    overflow: auto;
    background: rgba(245, 249, 253, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 17px;
    box-shadow: inset 0 1px 0 #ffffff, 0 15px 34px rgba(4, 20, 38, 0.16);
}

body.admin-futuristic .table {
    margin: 0;
    color: var(--fca-ink);
    background: transparent;
    border-color: #d9e5ef;
}

body.admin-futuristic .table > :not(caption) > * > * {
    padding: 13px 12px;
    border-color: #dce7f0;
    box-shadow: none;
    vertical-align: middle;
}

body.admin-futuristic .table thead th {
    color: #ffffff;
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    background: linear-gradient(145deg, var(--fca-navy-900), var(--fca-navy-800));
    border-color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

body.admin-futuristic .table thead th:first-child {
    border-radius: 10px 0 0 10px;
}

body.admin-futuristic .table thead th:last-child {
    border-radius: 0 10px 10px 0;
}

body.admin-futuristic .table tbody td {
    color: #263d55;
    font-size: 0.76rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.88);
}

body.admin-futuristic .table-striped > tbody > tr:nth-of-type(odd) > * {
    color: #263d55;
    background: #edf4fa;
}

body.admin-futuristic .table-hover > tbody > tr:hover > *,
body.admin-futuristic .table tbody tr:hover td {
    color: var(--fca-navy-800);
    background: #dfeefa;
}

body.admin-futuristic .table a:not(.btn) {
    color: var(--fca-navy-700);
    font-weight: 800;
}

body.admin-futuristic .dataTables_wrapper label,
body.admin-futuristic .dataTables_info {
    color: #d5e3ef !important;
    font-size: 0.75rem;
    font-weight: 700;
}

body.admin-futuristic .dataTables_wrapper .dataTables_length select,
body.admin-futuristic .dataTables_wrapper .dataTables_filter input {
    min-height: 40px;
    color: var(--fca-ink);
    background: #f7fbff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
}

body.admin-futuristic .pagination {
    gap: 5px;
}

body.admin-futuristic .page-link {
    min-width: 36px;
    color: var(--fca-navy-800);
    font-weight: 750;
    text-align: center;
    background: #f5f9fd;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px !important;
}

body.admin-futuristic .page-item.active .page-link {
    color: #ffffff;
    background: var(--fca-navy-800);
    border-color: var(--fca-navy-700);
}

body.admin-futuristic .admin-pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 12px 14px;
    background: rgba(5, 25, 47, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.admin-futuristic .admin-pagination-meta {
    display: flex;
    min-width: 150px;
    flex-direction: column;
    gap: 3px;
}

body.admin-futuristic .admin-pagination-meta > span {
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 850;
}

body.admin-futuristic .admin-pagination-meta > small {
    color: #aebfd1 !important;
    font-size: 0.63rem;
    font-weight: 650;
}

body.admin-futuristic .admin-compact-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
    margin: 0;
}

body.admin-futuristic .admin-compact-pagination .page-link {
    display: inline-flex;
    min-width: 36px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 10px;
    line-height: 1;
    box-shadow: 0 7px 16px rgba(4, 20, 38, 0.12);
}

body.admin-futuristic .admin-compact-pagination .admin-pagination-nav .page-link {
    min-width: 82px;
}

body.admin-futuristic .admin-compact-pagination .page-item.disabled .page-link {
    color: #91a5b8;
    background: rgba(232, 241, 250, 0.72);
    border-color: transparent;
    box-shadow: none;
    opacity: 0.68;
}

body.admin-futuristic .admin-compact-pagination .admin-pagination-ellipsis .page-link {
    min-width: 24px;
    padding-right: 4px;
    padding-left: 4px;
    color: #b9cad9;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    opacity: 1;
}

body.admin-futuristic .admin-compact-pagination .page-item:not(.disabled) .page-link:hover {
    color: #ffffff;
    background: var(--fca-navy-700);
    border-color: rgba(255, 255, 255, 0.16);
}

/* Forms, controls, and actions */
body.admin-futuristic .page-content-wrapper label,
body.admin-futuristic .modal label {
    margin-bottom: 7px;
    color: #e8f2fb;
    font-size: 0.72rem;
    font-weight: 800;
}

body.admin-futuristic .form-control,
body.admin-futuristic .form-select,
body.admin-futuristic .select2-container .select2-selection--single,
body.admin-futuristic .select2-container .select2-selection--multiple {
    min-height: 45px;
    color: var(--fca-ink);
    font-size: 0.78rem;
    font-weight: 650;
    background: #f6faff;
    border: 1px solid rgba(24, 55, 93, 0.12);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 #ffffff;
}

body.admin-futuristic textarea.form-control {
    min-height: 120px;
}

body.admin-futuristic .form-control:focus,
body.admin-futuristic .form-select:focus {
    color: var(--fca-ink);
    background: #ffffff;
    border-color: var(--fca-blue-400);
    box-shadow: 0 0 0 4px rgba(114, 166, 210, 0.18);
}

body.admin-futuristic .form-control::placeholder {
    color: #93a5b7;
}

body.admin-futuristic .btn {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 0.72rem;
    font-weight: 850;
    border-radius: 11px;
    box-shadow: 0 8px 20px rgba(5, 25, 47, 0.12);
    transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
}

body.admin-futuristic .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(5, 25, 47, 0.18);
}

body.admin-futuristic :is(.btn-primary, .btn-dark) {
    color: #ffffff;
    background: linear-gradient(135deg, var(--fca-navy-900), var(--fca-navy-700));
    border-color: rgba(255, 255, 255, 0.1);
}

body.admin-futuristic .btn-secondary {
    color: var(--fca-navy-800);
    background: #e7f0f8;
    border-color: rgba(24, 55, 93, 0.12);
}

body.admin-futuristic .btn-info {
    color: var(--fca-navy-900);
    background: #8fe4dd;
    border-color: #8fe4dd;
}

body.admin-futuristic .btn-success {
    color: #063622;
    background: var(--fca-success);
    border-color: var(--fca-success);
}

body.admin-futuristic .btn-warning {
    color: #4b3300;
    background: var(--fca-warning);
    border-color: var(--fca-warning);
}

body.admin-futuristic .btn-danger {
    color: #ffffff;
    background: #d94f67;
    border-color: #d94f67;
}

body.admin-futuristic .btn-light {
    color: var(--fca-navy-800);
    background: #ffffff;
    border-color: rgba(24, 55, 93, 0.12);
}

body.admin-futuristic .btn-sm {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 0.66rem;
    border-radius: 8px;
}

body.admin-futuristic .alert {
    color: #dcebf7;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
}

body.admin-futuristic .alert-info {
    color: var(--fca-navy-900);
    background: #e2f4fb;
    border-color: #b9dfef;
}

/* Modals */
body.admin-futuristic .modal-content {
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 92% 4%, rgba(114, 166, 210, 0.32), transparent 38%),
        linear-gradient(145deg, var(--fca-navy-900), var(--fca-navy-800));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(3, 17, 33, 0.34);
}

body.admin-futuristic .modal-header,
body.admin-futuristic .modal-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

body.admin-futuristic .modal-title {
    color: #ffffff;
    font-weight: 850;
}

body.admin-futuristic .modal .btn-close {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
    min-width: 36px;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    color: var(--fca-navy-900);
    background: rgba(244, 249, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(3, 17, 33, 0.2);
    opacity: 1;
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

body.admin-futuristic .modal .btn-close::before,
body.admin-futuristic .modal .btn-close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    content: "";
    background: var(--fca-navy-900);
    border-radius: 999px;
}

body.admin-futuristic .modal .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

body.admin-futuristic .modal .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

body.admin-futuristic .modal .btn-close > span {
    display: none;
}

body.admin-futuristic .modal .btn-close:hover {
    background: #ffffff !important;
    box-shadow: 0 11px 24px rgba(3, 17, 33, 0.28);
    opacity: 1;
    transform: translateY(-1px) scale(1.04);
}

body.admin-futuristic .modal .btn-close:focus-visible {
    outline: 3px solid rgba(143, 228, 221, 0.78) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 5px rgba(143, 228, 221, 0.18);
}

body.admin-futuristic .modal-footer .btn-secondary {
    color: var(--fca-navy-900) !important;
    background: #f4f9ff;
    border-color: rgba(255, 255, 255, 0.46);
}

body.admin-futuristic .modal .form-text,
body.admin-futuristic .modal p,
body.admin-futuristic .modal small {
    color: #c5d7e7 !important;
}

body.admin-futuristic .modal-backdrop.show {
    opacity: 0.7;
}

body.admin-futuristic .swal2-popup {
    color: #ffffff;
    background: linear-gradient(145deg, var(--fca-navy-900), var(--fca-navy-800));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: var(--fca-shadow-lg);
}

body.admin-futuristic .swal2-title,
body.admin-futuristic .swal2-html-container {
    color: #ffffff;
}

/* Profile and security */
body.admin-futuristic .profile-section {
    padding: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 17px;
}

body.admin-futuristic .profile-picture {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
}

body.admin-futuristic .profile-picture img,
body.admin-futuristic #showImage {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 5px solid #ffffff !important;
    box-shadow: 0 0 0 1px rgba(114, 166, 210, 0.55), 0 14px 30px rgba(3, 18, 34, 0.24);
}

body.admin-futuristic .profile-details .profile-name {
    color: #ffffff;
    font-weight: 900;
}

body.admin-futuristic .profile-details .profile-bio,
body.admin-futuristic .profile-details .text-muted {
    color: #c9dbea !important;
}

/* Dashboard command center */
body.admin-futuristic .admin-command-hero {
    position: relative;
    display: grid;
    min-height: 300px;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.82fr);
    gap: 24px;
    margin-bottom: 24px;
    padding: 24px;
    overflow: hidden;
    background:
        linear-gradient(rgba(24, 55, 93, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 55, 93, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 72% 24%, rgba(114, 166, 210, 0.24), transparent 23rem),
        linear-gradient(110deg, #ffffff 0%, #f8fbfe 68%, #d8e7f4 100%);
    background-size: 24px 24px, 24px 24px, auto, auto;
    border: 1px solid rgba(24, 55, 93, 0.12);
    border-radius: 26px;
    box-shadow: var(--fca-shadow-lg);
}

body.admin-futuristic .admin-command-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 8px 12px 14px;
}

body.admin-futuristic .admin-command-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    margin: 0 0 16px 94px;
    padding: 7px 11px;
    color: var(--fca-navy-800);
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background: rgba(245, 249, 253, 0.88);
    border: 1px solid rgba(24, 55, 93, 0.13);
    border-radius: 999px;
}

body.admin-futuristic .admin-command-badge i {
    color: var(--fca-navy-700);
}

body.admin-futuristic .admin-command-identity {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}

body.admin-futuristic .admin-command-avatar {
    position: relative;
    display: block;
    width: 76px;
    height: 76px;
}

body.admin-futuristic .admin-command-avatar img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border: 6px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 0 0 1px rgba(24, 55, 93, 0.16), 0 16px 34px rgba(7, 26, 48, 0.2);
}

body.admin-futuristic .admin-command-avatar > span {
    position: absolute;
    right: -2px;
    bottom: 4px;
    width: 17px;
    height: 17px;
    background: var(--fca-success);
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(69, 221, 161, 0.7);
}

body.admin-futuristic .admin-command-identity h1 {
    margin: 0 0 8px;
    color: var(--fca-navy-800);
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    font-weight: 900;
    letter-spacing: -0.055em;
}

body.admin-futuristic .admin-command-identity p {
    max-width: 680px;
    margin: 0;
    color: #576d84;
    font-size: 0.84rem;
    line-height: 1.65;
}

body.admin-futuristic .admin-command-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

body.admin-futuristic .admin-funds-panel {
    position: relative;
    display: flex;
    min-height: 250px;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 92% 10%, rgba(114, 166, 210, 0.35), transparent 40%),
        linear-gradient(145deg, var(--fca-navy-950), var(--fca-navy-800) 65%, #3472a8);
    background-size: 22px 22px, 22px 22px, auto, auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 21px;
    box-shadow: 0 22px 48px rgba(5, 24, 46, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.admin-futuristic .admin-panel-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

body.admin-futuristic .admin-panel-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
}

body.admin-futuristic .admin-live-status,
body.admin-futuristic .admin-section-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

body.admin-futuristic .admin-live-status i,
body.admin-futuristic .admin-section-status i {
    width: 7px;
    height: 7px;
    background: var(--fca-success);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(69, 221, 161, 0.85);
}

body.admin-futuristic .admin-panel-label {
    color: #aebfd1;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

body.admin-futuristic .admin-funds-panel > strong {
    display: block;
    margin: 8px 0 18px;
    color: #ffffff;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 900;
    letter-spacing: -0.045em;
}

body.admin-futuristic .admin-panel-divider {
    height: 1px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), transparent);
}

body.admin-futuristic .admin-panel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #b9cbdb;
    font-size: 0.7rem;
}

body.admin-futuristic .admin-panel-meta b {
    color: #ffffff;
    font-size: 1rem;
}

body.admin-futuristic .admin-panel-pulse {
    position: absolute;
    right: 20px;
    bottom: 18px;
    color: var(--fca-cyan);
    font-size: 1.6rem;
    opacity: 0.7;
}

body.admin-futuristic .admin-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 24px;
}

body.admin-futuristic .admin-metric-card {
    position: relative;
    display: grid;
    min-height: 164px;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 17px;
    padding: 24px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 92% 4%, rgba(114, 166, 210, 0.35), transparent 42%),
        linear-gradient(145deg, var(--fca-navy-900), var(--fca-navy-800) 60%, #2f679b);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 21px;
    box-shadow: var(--fca-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.admin-futuristic .admin-metric-icon,
body.admin-futuristic .admin-quick-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #ffffff;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.admin-futuristic .admin-metric-card > div:nth-child(2) > span,
body.admin-futuristic .admin-quick-copy small {
    color: #9eb4c8;
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.admin-futuristic .admin-metric-card h2 {
    margin: 7px 0 4px;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

body.admin-futuristic .admin-metric-card p {
    margin: 0;
    color: #c2d2e1;
    font-size: 0.72rem;
}

body.admin-futuristic .admin-metric-index {
    position: absolute;
    top: 17px;
    right: 20px;
    color: rgba(255, 255, 255, 0.16);
    font-size: 1.2rem;
    font-weight: 900;
}

body.admin-futuristic .admin-quick-section {
    padding: 25px;
    color: #ffffff;
    background:
        radial-gradient(circle at 96% 6%, rgba(114, 166, 210, 0.28), transparent 34%),
        linear-gradient(145deg, var(--fca-navy-950), var(--fca-navy-800));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: var(--fca-shadow-lg);
}

body.admin-futuristic .admin-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

body.admin-futuristic .admin-section-heading > div > span {
    color: #99b0c6;
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

body.admin-futuristic .admin-section-heading h2 {
    margin: 6px 0 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 850;
}

body.admin-futuristic .admin-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

body.admin-futuristic .admin-quick-card {
    position: relative;
    display: flex;
    min-height: 205px;
    flex-direction: column;
    padding: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

body.admin-futuristic .admin-quick-card:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(108, 229, 209, 0.32);
    transform: translateY(-4px);
}

body.admin-futuristic .admin-quick-card .admin-quick-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 21px;
    font-size: 1rem;
    border-radius: 14px;
}

body.admin-futuristic .admin-quick-copy {
    display: flex;
    flex-direction: column;
}

body.admin-futuristic .admin-quick-copy strong {
    margin: 7px 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 850;
}

body.admin-futuristic .admin-quick-copy > span {
    color: #b7cada;
    font-size: 0.69rem;
    line-height: 1.55;
}

body.admin-futuristic .admin-quick-arrow {
    position: absolute;
    right: 16px;
    bottom: 15px;
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    color: var(--fca-navy-800);
    background: #ffffff;
    border-radius: 10px;
}

/* Footer */
body.admin-futuristic .footer {
    left: var(--fca-sidebar-width);
    height: 54px;
    padding: 18px 26px;
    color: #718398;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(248, 251, 254, 0.92);
    border-top: 1px solid rgba(24, 55, 93, 0.1);
    backdrop-filter: blur(14px);
}

/* Authentication screens */
body.admin-auth-body {
    min-height: 100vh;
    color: var(--fca-ink);
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at 12% 12%, rgba(114, 166, 210, 0.24), transparent 26rem),
        radial-gradient(circle at 88% 88%, rgba(24, 55, 93, 0.2), transparent 30rem),
        linear-gradient(rgba(24, 55, 93, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 55, 93, 0.045) 1px, transparent 1px),
        linear-gradient(145deg, #f8fbfe, #e6eff7);
    background-size: auto, auto, 30px 30px, 30px 30px, auto;
}

body.admin-auth-body .accountbg {
    position: fixed;
    inset: 0;
    z-index: 0;
    height: auto;
    background:
        radial-gradient(circle at 78% 35%, rgba(114, 166, 210, 0.28), transparent 22rem),
        linear-gradient(110deg, transparent 0 58%, rgba(24, 55, 93, 0.94) 58% 100%);
}

body.admin-auth-body .wrapper-page {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(92vw, 470px);
    min-height: 100vh;
    margin: 0 0 0 10vw;
    place-items: center;
    padding: 36px 0;
}

body.admin-auth-body .card-pages {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(24, 55, 93, 0.12);
    border-radius: 26px;
    box-shadow: 0 32px 80px rgba(6, 25, 47, 0.18);
    backdrop-filter: blur(18px);
}

body.admin-auth-body .card-pages .card-body {
    padding: 34px;
}

body.admin-auth-body .logo-admin img {
    width: 210px;
    height: 68px;
    object-fit: contain;
}

body.admin-auth-body .card-pages h4 {
    margin-bottom: 24px !important;
    color: var(--fca-navy-800) !important;
    font-size: 1.45rem;
    font-weight: 900;
}

body.admin-auth-body .form-control {
    min-height: 50px;
    color: var(--fca-ink);
    font-weight: 650;
    background: #f4f8fc;
    border: 1px solid rgba(24, 55, 93, 0.13);
    border-radius: 13px;
}

body.admin-auth-body .form-control:focus {
    background: #ffffff;
    border-color: var(--fca-blue-400);
    box-shadow: 0 0 0 4px rgba(114, 166, 210, 0.18);
}

body.admin-auth-body .btn-primary {
    min-height: 50px;
    font-weight: 850;
    background: linear-gradient(135deg, var(--fca-navy-900), var(--fca-navy-700));
    border: 0;
    border-radius: 13px;
    box-shadow: 0 14px 28px rgba(24, 55, 93, 0.22);
}

body.admin-auth-body a {
    color: var(--fca-navy-700) !important;
    font-weight: 750;
}

/* Motion */
@keyframes fcaRiseIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fcaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

body.admin-futuristic .page-content-wrapper > .container-fluid > * {
    animation: fcaRiseIn 520ms ease both;
}

body.admin-futuristic .admin-funds-panel,
body.admin-futuristic .admin-panel-pulse {
    animation: fcaFloat 5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    body.admin-futuristic *,
    body.admin-futuristic *::before,
    body.admin-futuristic *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive layout */
@media (max-width: 1350px) {
    body.admin-futuristic .app-search {
        display: none;
    }

    body.admin-futuristic .admin-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    body.admin-futuristic .admin-command-hero {
        grid-template-columns: 1fr;
    }

    body.admin-futuristic .admin-funds-panel {
        min-height: 230px;
    }

    body.admin-futuristic .admin-topbar-context small {
        display: none;
    }
}

@media (max-width: 991px) {
    body.admin-futuristic .admin-topbar-context {
        min-width: 190px;
    }

    body.admin-futuristic .admin-topbar-context strong {
        font-size: 0.85rem;
    }

    body.admin-futuristic .profile {
        min-width: 58px;
    }

    body.admin-futuristic .profile .profile-username {
        display: none;
    }

    body.admin-futuristic .admin-metric-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --fca-topbar-height: 76px;
    }

    body.admin-futuristic .topbar .topbar-left {
        width: 70px;
    }

    body.admin-futuristic .topbar .logo {
        display: none;
    }

    body.admin-futuristic .topbar .logo-sm {
        display: inline-flex;
        height: var(--fca-topbar-height);
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    body.admin-futuristic .navbar-default {
        margin-left: 70px;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .topbar .topbar-left {
        width: 220px;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .topbar .logo {
        display: inline-flex;
        width: 100%;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .topbar .logo img {
        width: 180px;
        height: 48px;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .topbar .logo-sm {
        display: none;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .navbar-default {
        margin-left: 220px;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .navbar-default > .container-fluid {
        gap: 4px;
        padding-right: 8px;
        padding-left: 8px;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .profile {
        width: 52px;
        min-width: 52px;
        padding: 5px !important;
    }

    body.admin-futuristic .navbar-default > .container-fluid {
        padding: 0 12px;
    }

    body.admin-futuristic .admin-topbar-context {
        display: none;
    }

    body.admin-futuristic .button-menu-mobile {
        margin-right: 0;
    }

    body.admin-futuristic .side-menu.left {
        width: var(--fca-sidebar-width);
    }

    body.admin-futuristic .content-page,
    body.admin-futuristic #wrapper.enlarged .content-page {
        margin-left: 0;
    }

    body.admin-futuristic .content-page > .content {
        padding: 22px 12px 36px;
    }

    body.admin-futuristic .page-header-title {
        min-height: 154px;
        margin: -22px -5px 0;
        padding: 30px 20px 82px;
    }

    body.admin-futuristic .page-content-wrapper {
        margin-top: -62px;
    }

    body.admin-futuristic .page-content-wrapper > .container-fluid {
        padding: 0;
    }

    body.admin-futuristic .page-content-wrapper .card-body {
        padding: 18px;
    }

    body.admin-futuristic .admin-command-hero {
        padding: 16px;
        border-radius: 21px;
    }

    body.admin-futuristic .admin-command-copy {
        padding: 8px 2px;
    }

    body.admin-futuristic .admin-command-badge {
        margin-left: 0;
    }

    body.admin-futuristic .admin-command-identity {
        grid-template-columns: 1fr;
    }

    body.admin-futuristic .admin-command-avatar {
        width: 68px;
        height: 68px;
    }

    body.admin-futuristic .admin-command-avatar img {
        width: 68px;
        height: 68px;
    }

    body.admin-futuristic .admin-funds-panel {
        padding: 22px;
    }

    body.admin-futuristic .admin-quick-grid {
        grid-template-columns: 1fr;
    }

    body.admin-futuristic .admin-quick-card {
        min-height: 185px;
    }

    body.admin-futuristic .admin-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    body.admin-futuristic .footer {
        left: 0;
    }

    body.admin-auth-body .accountbg {
        background: radial-gradient(circle at 78% 20%, rgba(114, 166, 210, 0.3), transparent 24rem);
    }

    body.admin-auth-body .wrapper-page {
        width: min(92vw, 470px);
        margin: 0 auto;
        padding: 24px 0;
    }

    body.admin-auth-body .card-pages .card-body {
        padding: 26px 22px;
    }
}

@media (max-width: 360px) {
    body.admin-futuristic #wrapper:not(.enlarged) .topbar .topbar-left {
        width: 190px;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .topbar .logo img {
        width: 156px;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .navbar-default {
        margin-left: 190px;
    }
}

/* Collapsed desktop sidebar support */
body.admin-futuristic #wrapper.enlarged .left.side-menu,
body.admin-futuristic #wrapper.enlarged .topbar .topbar-left {
    width: 70px;
}

body.admin-futuristic #wrapper.enlarged .navbar-default {
    margin-left: 70px;
}

body.admin-futuristic #wrapper.enlarged .content-page {
    margin-left: 70px;
}

body.admin-futuristic #wrapper.enlarged .footer {
    left: 70px;
}

body.admin-futuristic #wrapper.enlarged .topbar .logo {
    display: none;
}

body.admin-futuristic #wrapper.enlarged .topbar .logo-sm {
    display: inline-flex;
    height: var(--fca-topbar-height);
    align-items: center;
}

body.admin-futuristic #wrapper.enlarged #sidebar-menu > ul > li > a:hover {
    width: 250px;
    color: #ffffff;
    background: var(--fca-navy-800);
}

body.admin-futuristic #wrapper.enlarged #sidebar-menu > ul > li > a > i {
    margin-right: 20px !important;
}

@media (max-width: 767px) {
    body.admin-futuristic .admin-pagination-wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    body.admin-futuristic .admin-compact-pagination {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    body.admin-futuristic .admin-compact-pagination .admin-page-window:not(.active),
    body.admin-futuristic .admin-compact-pagination .admin-pagination-ellipsis {
        display: none;
    }

    body.admin-futuristic .admin-compact-pagination .admin-pagination-nav .page-link {
        min-width: 74px;
        padding-right: 8px;
        padding-left: 8px;
        font-size: 0.66rem;
    }
}

/* Mobile shell parity with the member portal */
.admin-mobile-sidebar-brand,
.admin-mobile-sidebar-backdrop {
    display: none;
}

@media (max-width: 767px) {
    body.admin-futuristic #wrapper.enlarged .topbar .topbar-left,
    body.admin-futuristic #wrapper:not(.enlarged) .topbar .topbar-left {
        width: 0 !important;
        overflow: hidden;
        border: 0;
    }

    body.admin-futuristic #wrapper.enlarged .topbar .logo,
    body.admin-futuristic #wrapper:not(.enlarged) .topbar .logo,
    body.admin-futuristic #wrapper.enlarged .topbar .logo-sm,
    body.admin-futuristic #wrapper:not(.enlarged) .topbar .logo-sm {
        display: none !important;
    }

    body.admin-futuristic #wrapper.enlarged .navbar-default,
    body.admin-futuristic #wrapper:not(.enlarged) .navbar-default {
        width: 100%;
        margin-left: 0 !important;
    }

    body.admin-futuristic #wrapper.enlarged .navbar-default > .container-fluid,
    body.admin-futuristic #wrapper:not(.enlarged) .navbar-default > .container-fluid {
        gap: 10px;
        padding: 0 12px;
    }

    body.admin-futuristic .navbar-default .menu-left {
        display: flex;
        min-width: 0;
        flex: 1 1 auto;
        align-items: center;
    }

    body.admin-futuristic .navbar-default .menu-left > li:first-child {
        flex: 0 0 auto;
    }

    body.admin-futuristic .button-menu-mobile {
        margin-right: 10px;
    }

    body.admin-futuristic .admin-topbar-context {
        display: flex !important;
        min-width: 0;
        flex: 1 1 auto;
    }

    body.admin-futuristic .admin-topbar-context .admin-topbar-kicker,
    body.admin-futuristic .admin-topbar-context small {
        display: none;
    }

    body.admin-futuristic .admin-topbar-context strong {
        max-width: 100%;
        overflow: hidden;
        font-size: 0.9rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.admin-futuristic #wrapper.enlarged .profile,
    body.admin-futuristic #wrapper:not(.enlarged) .profile {
        width: 52px;
        min-width: 52px;
        padding: 5px !important;
    }

    body.admin-futuristic .side-menu.left {
        top: 0 !important;
        z-index: 1105 !important;
        width: 288px !important;
        height: 100vh !important;
        padding-bottom: 0 !important;
        overflow: hidden;
        transition: margin-left 220ms ease, transform 220ms ease;
    }

    body.admin-futuristic #wrapper.enlarged .left.side-menu {
        width: 288px !important;
        margin-left: -288px !important;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .left.side-menu {
        width: 288px !important;
        margin-left: 0 !important;
    }

    body.admin-futuristic .side-menu .sidebar-inner {
        height: 100vh !important;
        padding: 18px 14px 110px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    body.admin-futuristic .admin-mobile-sidebar-brand {
        display: flex;
        min-height: 100px;
        margin: -18px -14px 18px;
        padding: 12px 24px;
        align-items: center;
        justify-content: center;
        background:
            linear-gradient(rgba(24, 55, 93, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(24, 55, 93, 0.045) 1px, transparent 1px),
            #ffffff;
        background-size: 24px 24px;
        border-bottom: 1px solid rgba(24, 55, 93, 0.14);
    }

    body.admin-futuristic .admin-mobile-sidebar-brand img {
        width: 190px;
        height: 58px;
        object-fit: contain;
    }

    body.admin-futuristic #wrapper:not(.enlarged) .admin-mobile-sidebar-backdrop {
        position: fixed;
        z-index: 1100;
        inset: 0;
        display: block;
        padding: 0;
        background: rgba(5, 20, 38, 0.56);
        border: 0;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        animation: fcaBackdropIn 180ms ease both;
    }
}

@keyframes fcaBackdropIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 360px) {
    body.admin-futuristic .side-menu.left,
    body.admin-futuristic #wrapper.enlarged .left.side-menu,
    body.admin-futuristic #wrapper:not(.enlarged) .left.side-menu {
        width: min(288px, calc(100vw - 46px)) !important;
    }

    body.admin-futuristic #wrapper.enlarged .left.side-menu {
        margin-left: min(-288px, calc(-100vw + 46px)) !important;
    }

    body.admin-futuristic .admin-topbar-context strong {
        font-size: 0.8rem;
    }
}

/* Futuristic administrator sign-in */
body.admin-auth-body.admin-login-page {
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    padding: 24px;
    overflow-x: hidden;
    overflow-y: auto;
    place-items: center;
    background:
        radial-gradient(circle at 12% 14%, rgba(74, 140, 194, 0.26), transparent 27rem),
        radial-gradient(circle at 88% 86%, rgba(24, 55, 93, 0.24), transparent 31rem),
        linear-gradient(145deg, #f8fbfe 0%, #edf4fa 48%, #dce8f2 100%);
}

body.admin-auth-body.admin-login-page::before {
    position: fixed;
    z-index: 0;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(rgba(24, 55, 93, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 55, 93, 0.045) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(135deg, #000 0 45%, transparent 80%);
    -webkit-mask-image: linear-gradient(135deg, #000 0 45%, transparent 80%);
}

.admin-auth-atmosphere {
    position: fixed;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.admin-auth-orb {
    position: absolute;
    display: block;
    border: 1px solid rgba(24, 55, 93, 0.12);
    border-radius: 50%;
    box-shadow: inset 0 0 55px rgba(114, 166, 210, 0.08);
    animation: fcaAuthOrbDrift 12s ease-in-out infinite;
}

.admin-auth-orb::before,
.admin-auth-orb::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(24, 55, 93, 0.08);
    border-radius: inherit;
}

.admin-auth-orb::before {
    inset: 13%;
}

.admin-auth-orb::after {
    inset: 31%;
}

.admin-auth-orb-one {
    top: -180px;
    left: -140px;
    width: 460px;
    height: 460px;
}

.admin-auth-orb-two {
    right: -160px;
    bottom: -210px;
    width: 520px;
    height: 520px;
    animation-delay: -4s;
}

.admin-auth-orb-three {
    top: 12%;
    right: 9%;
    width: 150px;
    height: 150px;
    animation-delay: -8s;
}

.admin-login-shell {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(1180px, 100%);
    min-height: 650px;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(24, 55, 93, 0.14);
    border-radius: 30px;
    box-shadow:
        0 42px 100px rgba(7, 26, 48, 0.2),
        0 3px 10px rgba(7, 26, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: fcaAuthShellIn 680ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.admin-login-shell::before {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(143, 228, 221, 0.8), transparent);
}

.admin-login-showcase {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 34px 38px 30px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 83% 16%, rgba(82, 157, 211, 0.36), transparent 25rem),
        radial-gradient(circle at 9% 92%, rgba(39, 106, 158, 0.3), transparent 23rem),
        linear-gradient(145deg, #081d35 0%, #102f52 56%, #18375d 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-login-showcase::before,
.admin-login-showcase::after {
    position: absolute;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(143, 228, 221, 0.12);
    border-radius: 50%;
}

.admin-login-showcase::before {
    top: -120px;
    right: -95px;
    width: 340px;
    height: 340px;
    box-shadow: 0 0 80px rgba(114, 166, 210, 0.08);
}

.admin-login-showcase::after {
    right: -210px;
    bottom: -260px;
    width: 520px;
    height: 520px;
}

.admin-login-grid {
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(143, 228, 221, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 228, 221, 0.045) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 92%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 92%);
}

.admin-login-scan {
    position: absolute;
    z-index: 0;
    top: -25%;
    right: 0;
    left: 0;
    height: 22%;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(143, 228, 221, 0.07), transparent);
    animation: fcaAuthScan 7s linear infinite;
}

.admin-login-showcase-header,
.admin-login-showcase-copy,
.admin-login-showcase-footer {
    position: relative;
    z-index: 2;
}

.admin-login-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

body.admin-auth-body .admin-login-brand,
body.admin-auth-body .admin-login-mobile-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 15px;
    box-shadow: 0 12px 26px rgba(2, 14, 29, 0.18);
}

.admin-login-brand img,
.admin-login-mobile-brand img {
    display: block;
    width: 184px;
    height: 48px;
    object-fit: contain;
}

.admin-auth-online-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    color: #c8dced;
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.admin-auth-online-badge > span {
    width: 8px;
    height: 8px;
    background: #59e3b1;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(89, 227, 177, 0.12), 0 0 17px rgba(89, 227, 177, 0.9);
    animation: fcaAuthPulse 2.4s ease-in-out infinite;
}

.admin-login-showcase-copy {
    display: flex;
    max-width: 520px;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 34px 4px 24px;
}

.admin-login-eyebrow,
.admin-login-panel-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.admin-login-eyebrow {
    margin-bottom: 17px;
    color: #a9c5dc;
}

.admin-login-eyebrow i {
    color: #67e0bd;
    font-size: 1rem;
}

.admin-login-showcase-copy h1 {
    max-width: 500px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.55rem, 4vw, 3.65rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.01;
}

.admin-login-showcase-copy h1 span {
    display: block;
    color: #88c4eb;
}

.admin-login-showcase-copy > p {
    max-width: 485px;
    margin: 22px 0 27px;
    color: #b9ccdc;
    font-size: 0.83rem;
    font-weight: 500;
    line-height: 1.75;
}

.admin-auth-signal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.admin-auth-signal-card {
    display: grid;
    min-width: 0;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.admin-auth-signal-card > i {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: #73e4c2;
    font-size: 1.15rem;
    background: rgba(143, 228, 221, 0.1);
    border: 1px solid rgba(143, 228, 221, 0.14);
    border-radius: 12px;
}

.admin-auth-signal-card span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.admin-auth-signal-card strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 0.69rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-auth-signal-card small {
    overflow: hidden;
    margin-top: 3px;
    color: #94aec4;
    font-size: 0.58rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-login-showcase-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 19px;
    color: #8faac0;
    font-size: 0.58rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.admin-login-showcase-footer span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #b8cddd;
}

.admin-login-showcase-footer i {
    color: #59e3b1;
    font-size: 0.9rem;
}

.admin-login-panel {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 100% 0%, rgba(114, 166, 210, 0.13), transparent 19rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 254, 0.98));
}

.admin-login-panel::before {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 72px;
    height: 72px;
    content: "";
    pointer-events: none;
    border-top: 1px solid rgba(24, 55, 93, 0.15);
    border-right: 1px solid rgba(24, 55, 93, 0.15);
    border-radius: 0 18px 0 0;
}

.admin-login-panel-inner {
    width: min(100%, 440px);
    margin: auto;
    padding: 48px 38px 22px;
}

.admin-login-mobile-brand {
    display: none !important;
}

.admin-login-heading {
    margin-bottom: 30px;
}

.admin-login-panel-kicker {
    margin-bottom: 13px;
    color: #6b8298;
}

.admin-login-panel-kicker i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--fca-navy-800);
    font-size: 0.95rem;
    background: #e9f2fa;
    border: 1px solid rgba(24, 55, 93, 0.1);
    border-radius: 9px;
}

.admin-login-heading h2 {
    margin: 0;
    color: var(--fca-navy-900);
    font-size: clamp(2.05rem, 3.5vw, 2.65rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.admin-login-heading p {
    margin: 10px 0 0;
    color: #72869a;
    font-size: 0.76rem;
    font-weight: 550;
    line-height: 1.6;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-auth-field {
    display: flex;
    flex-direction: column;
}

.admin-auth-field > label,
.admin-auth-label-row label {
    margin: 0 0 8px;
    color: var(--fca-navy-900);
    font-size: 0.68rem;
    font-weight: 850;
}

.admin-auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.admin-auth-label-row > span {
    color: #93a5b6;
    font-size: 0.56rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-auth-control {
    position: relative;
    display: flex;
    align-items: center;
}

.admin-auth-control > i {
    position: absolute;
    left: 17px;
    z-index: 2;
    color: #6f89a2;
    font-size: 1.12rem;
    pointer-events: none;
}

body.admin-auth-body.admin-login-page .admin-auth-control .form-control {
    width: 100%;
    height: 56px;
    min-height: 56px;
    padding: 0 17px 0 50px;
    color: #132b46;
    font-size: 0.76rem;
    font-weight: 700;
    background: rgba(239, 246, 252, 0.82);
    border: 1px solid rgba(24, 55, 93, 0.13);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

body.admin-auth-body.admin-login-page .admin-auth-control .form-control[name="password"] {
    padding-right: 52px;
}

body.admin-auth-body.admin-login-page .admin-auth-control .form-control::placeholder {
    color: #9badbe;
    font-weight: 600;
}

body.admin-auth-body.admin-login-page .admin-auth-control .form-control:focus {
    color: #102a46;
    background: #ffffff;
    border-color: #5b9dca;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(91, 157, 202, 0.16), 0 12px 28px rgba(24, 55, 93, 0.08);
}

.admin-auth-control:focus-within > i {
    color: var(--fca-navy-700);
}

.admin-auth-control.has-error .form-control {
    border-color: #d94f67 !important;
    box-shadow: 0 0 0 4px rgba(217, 79, 103, 0.1);
}

.admin-password-toggle {
    position: absolute;
    right: 9px;
    z-index: 3;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    color: #6d849a;
    background: transparent;
    border: 0;
    border-radius: 10px;
}

.admin-password-toggle:hover,
.admin-password-toggle[aria-pressed="true"] {
    color: var(--fca-navy-900);
    background: #e3eef7;
}

.admin-password-toggle i {
    font-size: 1.05rem;
}

.admin-auth-error {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 7px;
    color: #c23e56;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.4;
}

.admin-auth-error i {
    margin-top: 1px;
    font-size: 0.84rem;
}

.admin-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: -3px;
}

.admin-remember-control {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #516a82;
    font-size: 0.66rem;
    font-weight: 700;
    cursor: pointer;
}

.admin-remember-control input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.admin-remember-control > span {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: transparent;
    background: #eff5fa;
    border: 1px solid rgba(24, 55, 93, 0.17);
    border-radius: 6px;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.admin-remember-control > span i {
    font-size: 0.82rem;
}

.admin-remember-control input:checked + span {
    color: #ffffff;
    background: var(--fca-navy-700);
    border-color: var(--fca-navy-700);
}

.admin-remember-control input:focus-visible + span {
    outline: 3px solid rgba(91, 157, 202, 0.28);
    outline-offset: 2px;
}

body.admin-auth-body.admin-login-page .admin-login-options a {
    color: var(--fca-navy-700) !important;
    font-size: 0.66rem;
    font-weight: 800;
    text-decoration: none;
}

body.admin-auth-body.admin-login-page .admin-login-options a:hover {
    color: var(--fca-blue-400) !important;
}

.admin-login-submit {
    position: relative;
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 2px;
    padding: 10px 13px 10px 18px;
    overflow: hidden;
    color: #ffffff;
    text-align: left;
    background:
        radial-gradient(circle at 85% 20%, rgba(114, 166, 210, 0.42), transparent 45%),
        linear-gradient(135deg, #0b223d, #18375d 58%, #275f91);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    box-shadow: 0 17px 34px rgba(24, 55, 93, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
}

.admin-login-submit::before {
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -25%;
    width: 28%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-18deg);
    transition: left 450ms ease;
}

.admin-login-submit:hover {
    color: #ffffff;
    filter: saturate(1.1);
    box-shadow: 0 22px 42px rgba(24, 55, 93, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.admin-login-submit:hover::before {
    left: 112%;
}

.admin-login-submit > span {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: -0.01em;
}

.admin-login-submit > span small {
    margin-bottom: 2px;
    color: #9db9d1;
    font-size: 0.54rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-login-submit > i {
    position: relative;
    z-index: 1;
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    color: var(--fca-navy-900);
    font-size: 1rem;
    background: #ffffff;
    border-radius: 11px;
    box-shadow: 0 8px 18px rgba(2, 14, 29, 0.18);
}

.admin-auth-trust-note {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 21px;
    border-top: 1px solid rgba(24, 55, 93, 0.1);
}

.admin-auth-trust-note > i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #1b755d;
    font-size: 1rem;
    background: #e5f7f0;
    border: 1px solid #ccebdd;
    border-radius: 10px;
}

.admin-auth-trust-note > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.admin-auth-trust-note strong {
    color: #36516c;
    font-size: 0.63rem;
    font-weight: 850;
}

.admin-auth-trust-note small {
    margin-top: 2px;
    color: #8b9daf;
    font-size: 0.55rem;
    font-weight: 600;
}

.admin-login-panel-footer {
    padding: 13px 26px 20px;
    color: #91a2b2;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

@keyframes fcaAuthShellIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }

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

@keyframes fcaAuthOrbDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(12px, -16px, 0) rotate(8deg);
    }
}

@keyframes fcaAuthScan {
    from {
        transform: translateY(-120%);
    }

    to {
        transform: translateY(700%);
    }
}

@keyframes fcaAuthPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.72;
        transform: scale(0.82);
    }
}

@media (max-width: 1050px) {
    .admin-login-shell {
        min-height: 620px;
        grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
    }

    .admin-login-showcase {
        padding-right: 30px;
        padding-left: 30px;
    }

    .admin-login-showcase-copy h1 {
        font-size: 2.75rem;
    }

    .admin-auth-online-badge {
        display: none;
    }
}

@media (max-width: 900px) {
    body.admin-auth-body.admin-login-page {
        padding: 20px;
    }

    .admin-login-shell {
        width: min(680px, 100%);
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .admin-login-showcase {
        min-height: 300px;
        padding: 27px 30px 25px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .admin-login-showcase-copy {
        max-width: 100%;
        padding: 27px 0 10px;
    }

    .admin-login-showcase-copy h1 {
        max-width: 570px;
        font-size: 2.35rem;
    }

    .admin-login-showcase-copy > p,
    .admin-auth-signal-grid,
    .admin-login-showcase-footer {
        display: none;
    }

    .admin-login-panel-inner {
        width: min(100%, 500px);
        padding-top: 40px;
    }
}

@media (max-width: 575px) {
    body.admin-auth-body.admin-login-page {
        display: block;
        padding: 12px;
    }

    body.admin-auth-body.admin-login-page::before {
        background-size: 24px 24px;
    }

    .admin-login-shell {
        width: 100%;
        border-radius: 23px;
        box-shadow: 0 24px 58px rgba(7, 26, 48, 0.18);
    }

    .admin-login-showcase {
        min-height: 210px;
        padding: 20px 21px;
    }

    .admin-login-showcase-header {
        gap: 10px;
    }

    body.admin-auth-body .admin-login-brand {
        padding: 5px 12px;
        border-radius: 12px;
    }

    .admin-login-brand img {
        width: 158px;
        height: 43px;
    }

    .admin-login-showcase-copy {
        padding: 24px 0 0;
    }

    .admin-login-eyebrow {
        margin-bottom: 10px;
        font-size: 0.54rem;
    }

    .admin-login-showcase-copy h1 {
        max-width: 330px;
        font-size: clamp(1.65rem, 8.5vw, 2.15rem);
        line-height: 1.04;
    }

    .admin-login-panel::before {
        top: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .admin-login-panel-inner {
        width: 100%;
        padding: 32px 21px 18px;
    }

    .admin-login-heading {
        margin-bottom: 25px;
    }

    .admin-login-panel-kicker {
        margin-bottom: 10px;
        font-size: 0.56rem;
    }

    .admin-login-heading h2 {
        font-size: 2rem;
    }

    .admin-login-form {
        gap: 18px;
    }

    .admin-login-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .admin-login-submit {
        min-height: 58px;
    }

    .admin-auth-trust-note {
        margin-top: 21px;
    }

    .admin-auth-trust-note small {
        line-height: 1.4;
    }

    .admin-login-panel-footer {
        padding-bottom: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .admin-auth-orb,
    .admin-login-shell,
    .admin-login-scan,
    .admin-auth-online-badge > span {
        animation: none !important;
    }

    .admin-login-submit::before {
        display: none;
    }
}
