@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=DM+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
    --primary: #015c94;
    --primary-dark: #014a7a;
    --primary-mid: #015c94;
    --primary-light: #1d69a9;
    --accent-gold: #fddf00;
    --accent-gold-light: #ffe64d;
    --accent-gold-dim: #e6c900;
    --accent-steel: #27adff;
    --accent-steel-light: #5ec3ff;

    /* UI Colors */
    --bg-body: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f4f8;
    --bg-sidebar: #ffffff;
    --bg-header: #015c94;
    --bg-table-stripe: rgba(1, 92, 148, 0.04);

    /* Text */
    --text-heading: #015c94;
    --text-body: #2b2b2b;
    --text-muted: #6c757d;
    --text-sidebar: #2b2b2b;
    --text-white: #ffffff;
    --text-gold: #e6c900;

    /* Status Colors */
    --status-pending: #fddf00;
    --status-active: #015c94;
    --status-closed: #6c757d;
    --status-urgent: #e53e3e;
    --status-info: #27adff;
    --status-success: #38a169;

    /* Borders & Shadows */
    --border: #dee2e6;
    --border-light: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(1, 92, 148, 0.1);
    --shadow-gold: 0 4px 20px rgba(253, 223, 0, 0.2);

    /* Layout */
    --sidebar-width: 280px;
    --sidebar-collapsed: 72px;
    --header-height: 68px;
    --footer-height: 56px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 18px;

    /* Transitions */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 15px;
}
body {
    font-family: "DM Sans", Arial, sans-serif;
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul,
ol {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
    background: #27adff;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #27adff;
}

.app-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.sidebar {
    background: #2b2b2b;
    width: 280px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(1, 92, 148, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar.open {
    width: 280px;
}

.sidebar-logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 16px 16px 16px;
}

.sidebar-logo-circle {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(39, 173, 255, 0.3);
    border: 3px solid rgba(39, 173, 255, 0.3);
    transition: transform 0.3s ease;
}
.sidebar-logo-circle:hover {
    transform: scale(1.05);
}

.sidebar-brand-text {
    text-align: center;
    padding: 8px 16px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}
.brand-name {
    color: white;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}
.brand-sub {
    color: white;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 700;
}
/* ---------- Sidebar Collapsed (icon-only) state ---------- */
.sidebar.collapsed {
    width: var(--sidebar-collapsed, 70px);
    transform: translateX(0);
}
.sidebar.collapsed .sidebar-brand-text,
.sidebar.collapsed .nav-section-label,
.sidebar.collapsed .nav-link span:not(.nav-icon),
.sidebar.collapsed .nav-badge,
.sidebar.collapsed .sidebar-footer .help-btn span,
.sidebar.collapsed #analyticsArrow,
.sidebar.collapsed #dacArrow {
    display: none;
}
.sidebar.collapsed .sidebar-logo-circle {
    width: 42px;
    height: 42px;
}
.sidebar.collapsed .nav-link {
    justify-content: center;
    padding: 10px 0;
}
.sidebar.collapsed .nav-submenu {
    display: none;
}
.sidebar.collapsed .close-sidebar {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
}

body.sidebar-collapsed .main-content {
    margin-left: var(--sidebar-collapsed, 70px) !important;
    width: calc(100% - var(--sidebar-collapsed, 70px)) !important;
    max-width: calc(100% - var(--sidebar-collapsed, 70px)) !important;
}

body:not(.sidebar-collapsed) .main-content {
    margin-left: 280px !important;
    width: calc(100% - 280px) !important;
    max-width: calc(100% - 280px) !important;
}



.sidebar-nav {
    padding-inline: 12px;
    padding-top: 10px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}
.sidebar-nav .nav-section-label:first-child {
    margin-top: 0;
}

.nav-section-label {
    color: #27adff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 12px 8px 12px;
}

.nav-item {
    margin-bottom: 4px;
    width: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: rgba(39, 173, 255, 0.3);
    color: white;
}

.nav-link.active {
    background: #27adff;
    color: white;
    box-shadow: 0 4px 15px rgba(39, 173, 255, 0.3);
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-badge {
    margin-left: auto;
    background: #27adff;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.nav-badge.urgent {
    background: #e53e3e;
    color: #fff;
}

.nav-submenu {
    margin-left: 32px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.nav-submenu.open {
    max-height: 300px;
}
.nav-submenu .nav-link {
    padding: 8px 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.nav-submenu .nav-link:hover {
    color: white;
    background: rgba(39, 173, 255, 0.3);
}
.nav-submenu .nav-link.active {
    background: #27adff;
    color: #2b2b2b;
    box-shadow: 0 4px 15px rgba(39, 173, 255, 0.3);
}

.sidebar-footer {
    padding: 20px 16px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.help-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    transition: all 0.2s;
}
.help-btn:hover {
    background: rgba(1, 92, 148, 0.2);
    color: white;
}

.close-sidebar {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.15s ease;
}
.close-sidebar:hover {
    background: rgba(229, 62, 62, 0.3);
}
.close-sidebar:focus-visible {
    outline: 2px solid #27adff;
    outline-offset: 2px;
}

.main-content {
    margin-left: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    height: var(--header-height);
    background: #1d69a9;
    border-bottom: 1px solid rgba(1, 92, 148, 0.4);
    display: flex;
    align-items: center;
    padding: 0 28px;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: var(--shadow-sm);
}
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.sidebar-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.sidebar-toggle:hover {
    background: rgba(1, 92, 148, 0.2);
    color: #27adff;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumb .separator {
    opacity: 0.5;
}
.breadcrumb .current {
    color: #27adff;
    font-weight: 600;
}

.header-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(1, 92, 148, 0.5);
    border-radius: 10px;
    padding: 0 14px;
    gap: 10px;
    width: 280px;
    height: 38px;
}
.header-search:focus-within {
    border-color: var(--border);
    background: var(--bg-header);
    box-shadow: none;
}
.header-search input {
    flex: 1;
    background: none;
    border: none;
    font-size: 13px;
    color: white;
}
.header-search input::placeholder {
    color: white;
}
.header-search .search-icon {
    color: white;
    font-size: 15px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}
.header-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    position: relative;
    flex-shrink: 0;
}
.header-icon-btn:hover {
    background: rgba(1, 92, 148, 0.2);
    color: #27adff;
}
.header-icon-btn .badge {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
    height: 20px;
    min-width: 18px;
    min-height: 18px;
    background: #27adff;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    border: 2px solid #2b2b2b;
    padding: 0;
}
.header-divider {
    width: 1px;
    height: 28px;
    background: rgba(1, 92, 148, 0.4);
    margin: 0 4px;
    flex-shrink: 0;
}
.header-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
    user-select: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.header-user:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}
.header-avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #27adff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border: 2px solid rgba(253, 223, 0, 0.4);
    flex-shrink: 0;
}
.header-user-info {
    line-height: 1.3;
    text-align: left;
}
.header-user-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}
.header-user-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 290px;
    background: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 9999;
    overflow: hidden;
    border: 1px solid rgba(1, 92, 148, 0.25);
    display: block;
    animation: dropdownFade 0.15s ease-out;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #1e293b;
    color: #fff;
}
.user-dropdown-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #015C94;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}
.user-dropdown-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.user-dropdown-role {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 1px;
}
.user-dropdown-circle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 20px;
}
.user-online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}
.user-dropdown-body {
    padding: 6px 0;
    border-bottom: 1px solid rgba(1, 92, 148, 0.12);
    background: #fff;
}
.user-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 9px 16px !important;
    color: #2b2b2b !important;
    text-decoration: none !important;
    transition: background 0.15s ease;
    cursor: pointer;
    background: #fff !important;
    border: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.user-dropdown-item:hover {
    background: #f0f7ff !important;
}
.user-dropdown-item-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #015C94;
    color: #fff;
    flex-shrink: 0;
}
.user-dropdown-item-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    text-align: left !important;
}
.user-dropdown-item-text span {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.3 !important;
    display: block !important;
}
.user-dropdown-item:hover .user-dropdown-item-text span {
    color: #015C94 !important;
}
.user-dropdown-item-text small {
    font-size: 11px !important;
    color: #64748b !important;
    font-weight: 400 !important;
    display: block !important;
}
.user-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #f8fafc;
}
.user-dropdown-logout {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(43,43,43,0.15);
    background: #015C94;
    color: #fff;
    cursor: pointer;
}
.user-dropdown-logout:hover {
    background: #024168;
}
.user-dropdown-version {
    font-size: 11px;
    color: #64748b;
}

/* Notification Dropdown */
.notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    max-width: calc(100vw - 24px);
    background: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 9999;
    overflow: hidden;
    border: 1px solid rgba(1, 92, 148, 0.25);
    display: block;
    animation: dropdownFade 0.15s ease-out;
}
.notif-dropdown-header {
    color: #fff;
    background: #1e293b;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
}
.notif-dropdown-header button {
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 11px;
    font-weight: 600;
}
.notif-dropdown-header button:hover {
    color: #fff;
}
.notif-dropdown-body {
    max-height: 380px;
    padding: 4px 0;
    overflow-y: auto;
    background: #fff;
}
.notif-section-title {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #015C94;
    padding: 8px 16px 4px;
    font-size: 10.5px;
    font-weight: 700;
}
.notif-item {
    color: #2b2b2b;
    cursor: pointer;
    border-left: 3px solid transparent;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 16px;
    text-decoration: none;
    transition: background 0.15s;
    display: flex;
}
.notif-item:hover {
    background: #f0f7ff;
}
.notif-item.unread {
    background: rgba(1, 92, 148, 0.06);
    border-left-color: #015C94;
}
.notif-item-dot {
    background: #015C94;
    border-radius: 50%;
    width: 8px;
    min-width: 8px;
    height: 8px;
    margin-top: 5px;
}
.notif-item.pending .notif-item-dot {
    background: #e67e22;
}
.notif-item-text {
    flex-direction: column;
    flex: 1;
    gap: 2px;
    display: flex;
}
.notif-item-text span {
    color: #1e293b;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.35;
}
.notif-item-text small {
    color: #64748b;
    text-transform: capitalize;
    font-size: 11px;
}
.notif-empty {
    text-align: center;
    color: #64748b;
    padding: 24px 16px;
    font-size: 12px;
}
.notif-dropdown-footer {
    text-align: center;
    border-top: 1px solid rgba(1, 92, 148, 0.12);
    padding: 10px 16px;
    background: #f8fafc;
}
.notif-dropdown-footer a {
    color: #015C94;
    font-size: 12px;
    font-weight: 600;
}

.page-content {
    flex: 1;
    padding: 28px;
    background: #f3f0f0;
}
.complaint-page {
    flex: 1;
    padding: 28px;
    background: #f3f0f0;
}
.dashboard_page {
    flex: 1;
    padding: 28px;
    background: #f3f0f0;
}

.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}
.page-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.page-title {
    font-family: "Arial", serif;
    font-size: 24px;
    font-weight: 700;
    color: #27adff;
    letter-spacing: 0.5px;
}
.page-subtitle {
    font-size: 13px;
    margin-top: 4px;
}
.page-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f0f0;
    flex-wrap: wrap;
}
.page-title-group .title-underline {
    width: 48px;
    height: 3px;
    background: #1D69A9;
    border-radius: 2px;
    margin-top: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: #27adff;
    color: #fff;
    box-shadow: 0 2px 10px rgba(1, 92, 148, 0.3);
}
.btn-primary:hover {
    background: #014a7a;
    box-shadow: 0 4px 16px rgba(1, 92, 148, 0.45);
    transform: translateY(-1px);
}
.btn-gold {
    background: #27adff;
    color: #2b2b2b;
    box-shadow: 0 2px 10px rgba(253, 223, 0, 0.3);
}
.btn-gold:hover {
    background: #e6c900;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(253, 223, 0, 0.4);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid #27adff;
    color: #27adff;
}
.btn-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(1, 92, 148, 0.05);
}
.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}
.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
    justify-content: center;
}
.btn-danger {
    background: #e53e3e;
    color: #fff;
}
.btn-danger:hover {
    background: #c53030;
    transform: translateY(-1px);
}
.btn-success {
    background: #38a169;
    color: #fff;
}
.btn-success:hover {
    background: #2f855a;
    transform: translateY(-1px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
.stat-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 20px 22px;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(1, 92, 148, 0.1);
    border: 1px solid rgba(1, 92, 148, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(1, 92, 148, 0.2);
}
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #27adff;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.stat-card.navy::before,
.stat-card.gold::before,
.stat-card.blue::before,
.stat-card.orange::before,
.stat-card.red::before,
.stat-card.teal::before,
.stat-card.purple::before,
.stat-card.gray::before,
.stat-card.steel::before,
.stat-card.green::before {
    background: #27adff;
}

.stat-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.stat-icon.navy,
.stat-icon.gold,
.stat-icon.blue,
.stat-icon.orange,
.stat-icon.red,
.stat-icon.teal,
.stat-icon.purple,
.stat-icon.gray,
.stat-icon.steel,
.stat-icon.green {
    background: rgba(39, 173, 255, 0.15);
    color: #27adff;
}
.stat-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}
.stat-trend.up {
    background: rgba(56, 161, 105, 0.15);
    color: #38a169;
}
.stat-trend.down {
    background: rgba(229, 62, 62, 0.15);
    color: #e53e3e;
}
.stat-trend.neutral {
    background: #e9ecef;
    color: #2b2b2b;
}

.stat-value {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1d69a9;
}
.stat-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(1, 92, 148, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: #6c757d;
}
.stat-footer-value {
    font-weight: 600;
    color: #2b2b2b;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.section-title {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #27adff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title .title-dot {
    width: 8px;
    height: 8px;
    background: #27adff;
    border-radius: 50%;
}
.section-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(1, 92, 148, 0.1);
    border: 1px solid rgba(1, 92, 148, 0.15);
    overflow: hidden;
}
.card-tow {
    background: #1F93DB;
    border-radius: var(--border-radius);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(1, 92, 148, 0.2);
    border: 1px solid rgba(1, 92, 148, 0.3);
    overflow: hidden;
}
.card-header {
    padding: 18px 22px 14px;
    border-bottom: 1px solid rgba(1, 92, 148, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-title {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #015c94;
    display: flex;
    align-items: center;
    gap: 9px;
}
.card-title-tow .card-icon-tow {
    width: 28px;
    height: 28px;
    background: #054772;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #27adff;
}
.card-title-three .card-icon-three {
    width: 28px;
    height: 28px;
    background: #054772;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000000;
}
.card-title .card-icon {
    width: 28px;
    height: 28px;
    background: rgba(1, 92, 148, 0.15);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #27adff;
}
.card-body {
    padding: 20px 22px;
    color: #2b2b2b;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.dashboard-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.chart-container {
    position: relative;
    width: 100%;
}
.chart-bar-group {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 160px;
    padding-bottom: 8px;
}
.chart-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}
.chart-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: opacity 0.2s;
    min-height: 4px;
}
.chart-bar:hover {
    opacity: 0.8;
    cursor: pointer;
}
.chart-bar.primary {
    background: #27adff;
}
.chart-bar.gold {
    background: #27adff;
}
.chart-bar.teal {
    background: #27adff;
}
.chart-bar.blue {
    background: #27adff;
}
.chart-bar.steel {
    background: #27adff;
}
.chart-bar-label {
    font-size: 10px;
    color: #6c757d;
    font-weight: 500;
}
.chart-x-axis {
    display: flex;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}
.chart-x-label {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #6c757d;
}
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}
.donut-svg {
    flex-shrink: 0;
}
.donut-legend {
    flex: 1;
}
.donut-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 12.5px;
    color: #2b2b2b;
}
.donut-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
    background: #015c94;
}
.donut-label {
    flex: 1;
    color: #2b2b2b;
}
.donut-val {
    font-weight: 700;
    color: #015c94;
}

.table-responsive {
    overflow-x: auto;
    border-radius: var(--border-radius-sm);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.data-table thead tr {
    background: #27adff;
}
.data-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2b2b2b;
    white-space: nowrap;
}
.data-table thead th:first-child {
    border-radius: 0;
}
.data-table thead th:last-child {
    border-radius: 0;
}
.data-table tbody tr {
    border-bottom: 1px solid rgba(1, 92, 148, 0.2);
    transition: var(--transition);
}
.data-table tbody tr:hover {
    background: rgba(1, 92, 148, 0.08);
}
.data-table tbody tr:last-child {
    border-bottom: none;
}
.data-table tbody td {
    padding: 13px 16px;
    color: #2b2b2b;
    vertical-align: middle;
}
.table-id {
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    font-weight: 500;
    color: #27adff;
    background: rgba(1, 92, 148, 0.15);
    padding: 3px 8px;
    border-radius: 5px;
}
.data-table tbody tr {
    display: table-row !important;
}
.data-table tbody td {
    display: table-cell !important;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.badge-pending {
    background: rgba(253, 223, 0, 0.15);
    color: #27adff;
}
.badge-active {
    background: rgba(1, 92, 148, 0.15);
    color: #27adff;
}
.badge-closed {
    background: rgba(102, 102, 102, 0.2);
    color: #999;
}
.badge-urgent {
    background: rgba(229, 62, 62, 0.15);
    color: #e53e3e;
}
.badge-info {
    background: rgba(1, 92, 148, 0.12);
    color: #27adff;
}
.badge-finalized {
    background: rgba(56, 161, 105, 0.15);
    color: #38a169;
}
.badge-process {
    background: rgba(1, 92, 148, 0.12);
    color: #27adff;
}

.activity-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}
.activity-item:last-child {
    border-bottom: none;
}
.activity-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.activity-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.activity-dot.navy {
    background: rgba(1, 92, 148, 0.15);
    color: #27adff;
}
.activity-dot.gold {
    background: rgba(253, 223, 0, 0.15);
    color: #27adff;
}
.activity-dot.red {
    background: rgba(229, 62, 62, 0.15);
    color: #e53e3e;
}
.activity-dot.blue {
    background: rgba(1, 92, 148, 0.12);
    color: #27adff;
}
.activity-line {
    flex: 1;
    width: 1px;
    background: rgba(1, 92, 148, 0.2);
    margin-top: 4px;
}
.activity-content {
    flex: 1;
}
.activity-title {
    font-size: 13px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 2px;
}
.activity-desc {
    font-size: 12px;
    color: #999;
}
.activity-time {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
    margin-top: 2px;
}

.mini-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 24px;
}
.mini-stat {
    background: #ffffff;
    padding: 16px 18px;
    text-align: center;
    transition: var(--transition);
    border-right: 1px solid var(--border);
}
.mini-stat:last-child {
    border-right: none;
}
.mini-stat:hover {
    background: rgba(1, 92, 148, 0.04);
}
.mini-stat-value {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1;
    margin-bottom: 4px;
}
.mini-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1d7cb7;
}

.progress-item {
    margin-bottom: 14px;
}
.progress-item:last-child {
    margin-bottom: 0;
}
.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.progress-name {
    font-size: 12.5px;
    font-weight: 500;
    color: #2b2b2b;
}
.progress-count {
    font-size: 12px;
    font-weight: 700;
    color: #27adff;
}
.progress-bar-bg {
    height: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(1, 92, 148, 0.2);
}
.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
    background: #27adff;
}
.footer {
    height: var(--footer-height);
    background: #2b2b2b;
    border-top: 1px solid rgba(1, 92, 148, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    font-size: 12px;
    flex-shrink: 0;
    color: white;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.footer-logo-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-links a {
    color: white;
    font-size: 12px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: #27adff;
}

.notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid #27adff;
    z-index: 999;
    overflow: hidden;
    display: none;
}
.notif-dropdown.open {
    display: block;
}
.notif-header {
    padding: 16px 18px 12px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.notif-title {
    font-size: 14px;
    font-weight: 700;
    color: #2b2b2b;
}
.notif-count {
    background: #27adff;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
}
.notif-item {
    display: flex;
    gap: 12px;
    padding: 13px 18px;
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
    cursor: pointer;
}
.notif-item:hover {
    background: #f5f5f5;
}
.notif-item.unread {
    background: rgba(1, 92, 148, 0.04);
}
.notif-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    background: #27adff;
    color: #fff;
}
.notif-item-content {
    flex: 1;
}
.notif-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 2px;
}
.notif-item-desc {
    font-size: 12px;
    color: #666;
}
.notif-item-time {
    font-size: 10.5px;
    color: #999;
    white-space: nowrap;
    margin-top: 3px;
}

.alert-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    margin-bottom: 20px;
    border: 1px solid;
}
.alert-banner.info {
    background: rgba(1, 92, 148, 0.1);
    border-color: #27adff;
    color: #2b2b2b;
}
.alert-banner.warning {
    background: rgba(253, 223, 0, 0.1);
    border-color: #27adff;
    color: #27adff;
}
.alert-banner.success {
    background: rgba(56, 161, 105, 0.1);
    border-color: #38a169;
    color: #38a169;
}
.alert-banner .alert-icon {
    font-size: 16px;
    flex-shrink: 0;
    color: #27adff;
}
.alert-banner .alert-close {
    margin-left: auto;
    background: none;
    font-size: 16px;
    color: inherit;
    opacity: 0.6;
    padding: 0 4px;
}
.alert-banner .alert-close:hover {
    opacity: 1;
}

.filters-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #ffffff;
    border-radius: var(--border-radius);
    border: 1px solid rgba(1, 92, 148, 0.3);
    margin-bottom: 24px;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.filter-label {
    font-size: 12px;
    font-weight: 600;
    color: #1d7cb7;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}
.filter-select {
    height: 34px;
    padding: 0 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    color: var(--text-body);
    background: var(--bg-body);
    font-family: inherit;
    transition: all 0.2s ease;
    outline: none;
}
.filter-select:focus {
    border-color: var(--border);
    color: var(--text-body);
    box-shadow: none;
}
.filter-select[readonly] {
    background: rgba(2, 132, 199, 0.04);
    color: var(--text-muted);
    cursor: not-allowed;
}
.filter-select.is-invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.filter-date-range {
    display: flex;
    align-items: center;
    gap: 6px;
}
.filter-date-range input[type="date"] {
    height: 34px;
    padding: 0 10px;
    border: 1.5px solid rgba(1, 92, 148, 0.5);
    border-radius: 8px;
    font-size: 13px;
    color: #2b2b2b;
    background: rgba(255, 255, 255, 0.05);
}
.filter-date-range input[type="date"]:focus {
    border-color: var(--border);
    outline: none;
    box-shadow: none;
}
.filter-date-range-three {
    display: flex;
    align-items: center;
    gap: 6px;
}
.filter-date-range-three input[type="date"] {
    height: 34px;
    padding: 0 10px;
    border: 1.5px solid rgba(1, 92, 148, 0.5);
    border-radius: 8px;
    font-size: 13px;
    color: #000;
    background: rgba(255, 255, 255, 0.05);
}
.filter-date-range-three input[type="date"]:focus {
    border-color: var(--border);
    outline: none;
    box-shadow: none;
}
.filter-date-range .date-sep {
    font-size: 12px;
    color: #999;
}
.filter-spacer {
    flex: 1;
}

.priority-dots {
    display: flex;
    gap: 3px;
    align-items: center;
}
.priority-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #444;
}
.priority-dot.filled.high {
    background: #e53e3e;
}
.priority-dot.filled.medium {
    background: #27adff;
}
.priority-dot.filled.low {
    background: #27adff;
    opacity: 0.6;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    white-space: nowrap;
}
.action-btn-process {
    background: #27adff;
    color: #fff;
}
.action-btn-process:hover {
    background: #014a7a;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(1, 92, 148, 0.3);
}
.action-btn-notice {
    background: rgba(253, 223, 0, 0.15);
    color: #27adff;
    border: 1.5px solid rgba(253, 223, 0, 0.3);
}
.action-btn-notice:hover {
    background: rgba(253, 223, 0, 0.25);
    color: #27adff;
    transform: translateY(-1px);
}
.action-btn-view {
    background: rgba(1, 92, 148, 0.1);
    color: #015c94;
    border: 1.5px solid rgba(1, 92, 148, 0.3);
}
.action-btn-view:hover {
    background: rgba(255, 255, 255, 0.15);
}

.row-indicator {
    width: 4px;
    border-radius: 2px;
}
.row-indicator.urgent {
    background: #e53e3e;
}
.row-indicator.active {
    background: #27adff;
}
.row-indicator.pending {
    background: #27adff;
    opacity: 0.8;
}
.row-indicator.closed {
    background: #666;
    opacity: 0.5;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.2s;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.modal {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 560px;
    transform: scale(0.96);
    transition: transform 0.2s;
    overflow: hidden;
}
.modal-container {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    overflow: hidden;
}
.modal-overlay.open .modal {
    transform: scale(1);
}
.modal-header {
    padding: 20px 24px 16px;
    background: #27adff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-title {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-close {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.modal-close:hover {
    background: #27adff;
    color: #2b2b2b;
}
.modal-body {
    padding: 24px;
    color: #2b2b2b;
}
.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.form-group {
    margin-bottom: 18px;
}
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #27adff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    border: 1.5px solid #27adff;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    color: #2b2b2b;
    background: #fff;
    transition: var(--transition);
    font-family: inherit;
}
.form-control:focus {
    border-color: #27adff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(1, 92, 148, 0.15);
}
textarea.form-control {
    height: 90px;
    padding: 10px 14px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-info-card {
    background: rgba(1, 92, 148, 0.04);
    border: 1px solid #27adff;
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    margin-bottom: 18px;
}
.form-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    padding: 4px 0;
}
.form-info-label {
    color: #27adff;
}
.form-info-value {
    font-weight: 600;
    color: #2b2b2b;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: #6c757d;
}
.pagination-info {
    font-size: 12.5px;
}
.pagination-info strong {
    color: #2b2b2b;
}
.pagination-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}
.page-btn {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: #2b2b2b;
    background: #ffffff;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.page-btn:hover {
    border-color: #015c94;
    color: #015c94;
    background: rgba(1, 92, 148, 0.08);
}
.page-btn.active {
    background: #015c94;
    color: #fff;
    border-color: #015c94;
    font-weight: 700;
}
.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.bulk-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: #27adff;
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(1, 92, 148, 0.25);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.25s;
}
.bulk-bar.visible {
    opacity: 1;
    height: auto;
}
.bulk-bar-count {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.bulk-bar-count span {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-16px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.animate-fade-up {
    animation: fadeInUp 0.4s ease both;
}
.animate-delay-1 {
    animation-delay: 0.05s;
}
.animate-delay-2 {
    animation-delay: 0.1s;
}
.animate-delay-3 {
    animation-delay: 0.15s;
}
.animate-delay-4 {
    animation-delay: 0.2s;
}
.animate-delay-5 {
    animation-delay: 0.25s;
}
.animate-delay-6 {
    animation-delay: 0.3s;
}
.animate-delay-7 {
    animation-delay: 0.35s;
}
.animate-delay-8 {
    animation-delay: 0.4s;
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.font-mono {
    font-family: "JetBrains Mono", monospace;
}
.font-cinzel {
    font-family: "Cinzel", serif;
}
.text-navy {
    color: #27adff;
}
.text-gold {
    color: #27adff;
}
.text-muted {
    color: #999;
}
.text-heading {
    color: #2b2b2b;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.mt-4 {
    margin-top: 4px;
}
.mt-8 {
    margin-top: 8px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-24 {
    margin-top: 24px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-24 {
    margin-bottom: 24px;
}
.gap-8 {
    gap: 8px;
}
.d-flex {
    display: flex;
}
.align-center {
    align-items: center;
}
.flex-1 {
    flex: 1;
}
