/* ==========================================================================
   MANDAR CONTROL SUITE - FUTURISTIC CYBER-LUXURY ADMIN DESIGN SYSTEM
   ========================================================================== */

:root {
    --adm-bg: #090a0f;
    --adm-bg-subtle: #0e1118;
    --adm-surface: #131722;
    --adm-surface-elevated: #1a1f2e;
    --adm-surface-hover: #22283a;
    
    --adm-border: rgba(255, 255, 255, 0.08);
    --adm-border-gold: rgba(223, 183, 120, 0.25);
    --adm-border-active: #dfb778;
    
    --adm-gold: #dfb778;
    --adm-gold-dark: #af7b32;
    --adm-gold-glow: rgba(223, 183, 120, 0.35);
    
    --adm-text: #f3f4f8;
    --adm-text-muted: #8c93a8;
    --adm-text-dim: #5a6175;
    
    --adm-emerald: #10b981;
    --adm-emerald-bg: rgba(16, 185, 129, 0.12);
    --adm-amber: #f59e0b;
    --adm-amber-bg: rgba(245, 158, 11, 0.12);
    --adm-cobalt: #3b82f6;
    --adm-cobalt-bg: rgba(59, 130, 246, 0.12);
    --adm-violet: #8b5cf6;
    --adm-violet-bg: rgba(139, 92, 246, 0.12);
    --adm-rose: #f43f5e;
    --adm-rose-bg: rgba(244, 63, 94, 0.12);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-ui: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace, monospace;

    --adm-sidebar-width: 260px;
    --adm-header-height: 68px;
    --adm-radius-sm: 6px;
    --adm-radius: 10px;
    --adm-radius-lg: 16px;

    --adm-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --adm-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --adm-glass: rgba(19, 23, 34, 0.75);
}

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

body.admin-body {
    background: var(--adm-bg);
    color: var(--adm-text);
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   SHELL & GRID LAYOUT
   ========================================================================== */

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: var(--adm-sidebar-width);
    background: var(--adm-bg-subtle);
    border-right: 1px solid var(--adm-border);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.admin-main-wrap {
    flex: 1;
    margin-left: var(--adm-sidebar-width);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.sidebar-header {
    height: var(--adm-header-height);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--adm-border);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo-badge {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--adm-gold) 0%, var(--adm-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #08090d;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 0 16px var(--adm-gold-glow);
}

.sidebar-logo-text {
    display: flex;
    flex-direction: column;
}

.sidebar-logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, #fff 50%, var(--adm-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.sidebar-logo-sub {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--adm-gold);
    font-weight: 600;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--adm-text-dim);
    padding: 12px 12px 6px;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--adm-radius-sm);
    color: var(--adm-text-muted);
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: var(--adm-text-dim);
    transition: color 0.2s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--adm-text);
}

.nav-link:hover .nav-link-icon {
    color: var(--adm-gold);
}

.nav-link.is-active {
    background: linear-gradient(90deg, rgba(223, 183, 120, 0.15) 0%, rgba(223, 183, 120, 0.04) 100%);
    color: #ffffff;
    font-weight: 600;
    border-left: 3px solid var(--adm-gold);
}

.nav-link.is-active .nav-link-icon {
    color: var(--adm-gold);
}

.nav-badge {
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-mono);
}

.nav-badge--gold {
    background: rgba(223, 183, 120, 0.2);
    color: var(--adm-gold);
}

.nav-badge--amber {
    background: var(--adm-amber-bg);
    color: var(--adm-amber);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

.nav-badge--emerald {
    background: var(--adm-emerald-bg);
    color: var(--adm-emerald);
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--adm-border);
    background: rgba(0, 0, 0, 0.2);
}

.system-status-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--adm-border);
    border-radius: 8px;
    font-size: 11px;
    color: var(--adm-text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--adm-emerald);
    box-shadow: 0 0 8px var(--adm-emerald);
}

/* ==========================================================================
   TOP HEADER
   ========================================================================== */

.admin-header {
    height: var(--adm-header-height);
    background: rgba(14, 17, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--adm-border);
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-sidebar-toggle {
    display: none;
    background: none;
    border: 1px solid var(--adm-border);
    color: var(--adm-text);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.header-search {
    position: relative;
    width: 320px;
}

.header-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--adm-border);
    border-radius: 8px;
    padding: 8px 12px 8px 36px;
    color: #fff;
    font-size: 13px;
    transition: all 0.2s;
}

.header-search input:focus {
    outline: none;
    border-color: var(--adm-gold);
    box-shadow: 0 0 0 3px rgba(223, 183, 120, 0.15);
    background: rgba(255, 255, 255, 0.07);
}

.header-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--adm-text-dim);
    font-size: 14px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-clock {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--adm-gold);
    background: rgba(223, 183, 120, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(223, 183, 120, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-store-preview {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--adm-text-muted);
    padding: 7px 12px;
    border-radius: 6px;
    border: 1px solid var(--adm-border);
    transition: all 0.2s;
}

.btn-store-preview:hover {
    color: var(--adm-gold);
    border-color: var(--adm-gold);
    background: rgba(223, 183, 120, 0.05);
}

.admin-profile-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 12px;
    border-left: 1px solid var(--adm-border);
}

.admin-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #334c1c 0%, #1e2c10 100%);
    border: 1.5px solid var(--adm-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--adm-gold);
}

.admin-meta {
    display: flex;
    flex-direction: column;
}

.admin-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.admin-role {
    font-size: 10px;
    font-weight: 700;
    color: var(--adm-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-logout {
    background: none;
    border: 1px solid rgba(244, 63, 94, 0.25);
    color: #fca5a5;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: rgba(244, 63, 94, 0.15);
    border-color: var(--adm-rose);
}

/* ==========================================================================
   CONTENT AREA & CARDS
   ========================================================================== */

.admin-content {
    flex: 1;
    padding: 32px 32px 64px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.page-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--adm-gold);
    margin-bottom: 4px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.page-description {
    font-size: 0.9rem;
    color: var(--adm-text-muted);
    margin-top: 6px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--adm-radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--adm-gold) 0%, var(--adm-gold-dark) 100%);
    color: #08090d;
    box-shadow: 0 4px 16px var(--adm-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(223, 183, 120, 0.45);
    filter: brightness(1.06);
}

.btn-secondary {
    background: var(--adm-surface-elevated);
    border: 1px solid var(--adm-border);
    color: var(--adm-text);
}

.btn-secondary:hover {
    background: var(--adm-surface-hover);
    border-color: var(--adm-border-gold);
}

.btn-danger {
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid rgba(244, 63, 94, 0.35);
    color: #fca5a5;
}

.btn-danger:hover {
    background: var(--adm-rose);
    color: #fff;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
}

/* ==========================================================================
   METRIC STATS GRID (CYBER GLASS)
   ========================================================================== */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.metric-card {
    background: var(--adm-surface);
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
}

.metric-card:hover {
    border-color: var(--adm-border-gold);
    transform: translateY(-2px);
    box-shadow: var(--adm-shadow);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--adm-gold), transparent);
    opacity: 0.3;
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--adm-text-muted);
}

.metric-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.metric-value {
    font-family: var(--font-mono);
    font-size: 1.9rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.metric-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--adm-text-dim);
}

/* ==========================================================================
   TABLES & DATA CONTAINERS
   ========================================================================== */

.data-panel {
    background: var(--adm-surface);
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
    overflow: hidden;
    box-shadow: var(--adm-shadow-sm);
    margin-bottom: 32px;
}

.data-panel-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--adm-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: rgba(255, 255, 255, 0.015);
}

.data-panel-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.filter-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
}

.filter-tab {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--adm-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--adm-border);
    transition: all 0.2s;
}

.filter-tab:hover, .filter-tab.is-active {
    color: #fff;
    background: rgba(223, 183, 120, 0.12);
    border-color: var(--adm-border-gold);
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13.5px;
}

.admin-table th {
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--adm-text-dim);
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--adm-border);
    white-space: nowrap;
}

.admin-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--adm-border);
    color: var(--adm-text);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   STATUS BADGES
   ========================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.badge--emerald {
    background: var(--adm-emerald-bg);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.badge--emerald .badge-dot {
    background: #34d399;
    box-shadow: 0 0 6px #34d399;
}

.badge--amber {
    background: var(--adm-amber-bg);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.25);
}
.badge--amber .badge-dot {
    background: #fbbf24;
    box-shadow: 0 0 6px #fbbf24;
}

.badge--cobalt {
    background: var(--adm-cobalt-bg);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}
.badge--cobalt .badge-dot {
    background: #60a5fa;
    box-shadow: 0 0 6px #60a5fa;
}

.badge--rose {
    background: var(--adm-rose-bg);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.25);
}
.badge--rose .badge-dot {
    background: #fb7185;
    box-shadow: 0 0 6px #fb7185;
}

.badge--gray {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border: 1px solid var(--adm-border);
}
.badge--gray .badge-dot {
    background: #94a3b8;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #c5cad8;
    margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius-sm);
    padding: 10px 14px;
    color: #fff;
    font-size: 13.5px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--adm-gold);
    box-shadow: 0 0 0 3px rgba(223, 183, 120, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.form-select option {
    background: var(--adm-surface);
    color: #fff;
}

.form-help {
    font-size: 11.5px;
    color: var(--adm-text-dim);
    margin-top: 4px;
}

/* Gradient Visualizer Swatch */
.gradient-preview-box {
    height: 70px;
    border-radius: var(--adm-radius-sm);
    border: 1px solid var(--adm-border);
    display: flex;
    align-items: flex-end;
    padding: 8px 12px;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 11px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    margin-top: 8px;
}

/* Color Swatches Grid */
.palette-swatches-grid {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.palette-swatch-chip {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 24px;
    border: 1px solid var(--adm-border);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--adm-gold);
    border-color: var(--adm-gold);
}

input:checked + .toggle-slider:before {
    transform: translateX(20px);
    background-color: #08090d;
}

/* ==========================================================================
   TIMELINE (ORDER TRACKING PARITY)
   ========================================================================== */

.admin-order-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 24px 10px;
    margin-bottom: 24px;
}

.admin-order-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--adm-border);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.timeline-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--adm-surface-elevated);
    border: 2px solid var(--adm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--adm-text-dim);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.timeline-step.is-complete .timeline-node {
    background: var(--adm-emerald);
    border-color: var(--adm-emerald);
    color: #fff;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.4);
}

.timeline-step.is-active .timeline-node {
    background: var(--adm-gold);
    border-color: var(--adm-gold);
    color: #000;
    box-shadow: 0 0 16px var(--adm-gold-glow);
}

.timeline-title {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.timeline-time {
    font-size: 10.5px;
    color: var(--adm-text-dim);
    font-family: var(--font-mono);
    margin-top: 2px;
}

/* ==========================================================================
   ALERTS & TOAST
   ========================================================================== */

.alert {
    padding: 12px 18px;
    border-radius: var(--adm-radius-sm);
    font-size: 13.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert--success {
    background: var(--adm-emerald-bg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.alert--error {
    background: var(--adm-rose-bg);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #fca5a5;
}

.alert--info {
    background: var(--adm-cobalt-bg);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.admin-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-toast {
    background: #181d2a;
    border: 1px solid var(--adm-border-gold);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 12px 18px;
    color: #fff;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toast-slide 0.3s ease;
}

@keyframes toast-slide {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.is-open {
        transform: translateX(0);
    }
    .admin-main-wrap {
        margin-left: 0;
    }
    .mobile-sidebar-toggle {
        display: block;
    }
}
