/* ============================================
   CRM System — Storefront Theme
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --panel-black: #07111f;
    --panel-dark: #0d1a2a;
    --panel-mid: #101f31;
    --panel-hover: #16263a;
    --panel-raised: #193049;

    --lumen-white: #eef4fb;
    --lumen-dim: #adc0d4;

    --sig-green: #34d399;
    --sig-green-bg: rgba(6, 59, 46, 0.92);
    --sig-amber: #fbbf24;
    --sig-amber-bg: rgba(73, 49, 10, 0.92);
    --sig-red: #f87171;
    --sig-red-bg: rgba(69, 19, 19, 0.92);
    --sig-blue: #60a5fa;
    --sig-blue-bg: rgba(18, 46, 92, 0.92);

    --keyline: rgba(52, 80, 110, 0.72);
    --keyline-dim: rgba(36, 54, 77, 0.72);
    --keyline-bright: rgba(251, 146, 60, 0.42);

    --accent: #f97316;
    --accent-light: #fb923c;
    --accent-glow: rgba(249, 115, 22, 0.3);
    --accent-bg: rgba(77, 34, 11, 0.42);

    --gradient-accent: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-amber: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-red: linear-gradient(135deg, #ef4444 0%, #f87171 100%);

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.18);
    --shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 22px 40px rgba(0, 0, 0, 0.24);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.3);
    --shadow-accent: 0 18px 28px rgba(249, 115, 22, 0.2);

    /* Legacy aliases (maps old vars to new tokens) */
    --primary:       var(--accent);
    --primary-light: var(--accent-light);
    --primary-lighter: #a5b4fc;
    --primary-dark:  #4f46e5;
    --primary-bg:    var(--accent-bg);

    --success:       var(--sig-green);
    --success-light: #6ee7b7;
    --success-bg:    var(--sig-green-bg);
    --success-dark:  var(--sig-green);

    --warning:       var(--sig-amber);
    --warning-light: #fbbf24;
    --warning-bg:    var(--sig-amber-bg);
    --warning-dark:  var(--sig-amber);

    --danger:        var(--sig-red);
    --danger-light:  #f87171;
    --danger-bg:     var(--sig-red-bg);
    --danger-dark:   var(--sig-red);

    --info:          #38bdf8;
    --info-bg:       #0c4a6e;

    --gray-50:  var(--panel-black);
    --gray-100: var(--panel-dark);
    --gray-200: var(--panel-mid);
    --gray-300: var(--panel-raised);
    --gray-400: #52657b;
    --gray-500: #6f849a;
    --gray-600: #adc0d4;
    --gray-700: #d8e2ef;
    --gray-800: #eef4fb;
    --gray-900: #fff7ed;

    --border:       var(--keyline);
    --border-light: var(--keyline);
    --text-primary: var(--gray-800);
    --text-secondary: var(--gray-500);
    --text-muted: var(--gray-500);
    --bg-elevated:  var(--panel-mid);
    --bg:           var(--panel-dark);
    --bg-hover:     var(--panel-raised);
    --bg-secondary: var(--panel-mid);
    --bg-input: var(--panel-mid);

    --gradient-primary: var(--gradient-accent);
    --gradient-success: var(--gradient-green);
    --gradient-warning: var(--gradient-amber);
    --gradient-danger:  var(--gradient-red);
    --gradient-info: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);

    --shadow-primary: var(--shadow-accent);

    --radius-sm: 10px;
    --radius: 14px;
    --radius-md: 18px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease;
    --transition:      200ms ease;
    --transition-slow: 300ms ease;

    --sidebar-width: 284px;
    --sidebar-gap: 16px;

    --font-ui: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: Georgia, 'Times New Roman', serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-ui);
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 26%),
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.1), transparent 20%),
        linear-gradient(180deg, #091321 0%, #07111f 46%, #050b14 100%);
    color: var(--gray-700);
    display: flex;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

body.crm-shell::before,
body.crm-shell::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
}

body.crm-shell::before {
    top: -120px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.16), transparent 68%);
}

body.crm-shell::after {
    bottom: -120px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 70%);
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-light); }

/* ============================================
   Sidebar — Instrument Rail
   ============================================ */
.sidebar {
    width: var(--sidebar-width);
    background:
        linear-gradient(180deg, rgba(16, 31, 49, 0.98), rgba(8, 18, 30, 0.98));
    color: var(--gray-500);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    transition: transform var(--transition-slow), box-shadow var(--transition);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(251, 146, 60, 0.14);
}

.sidebar-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #c2410c 100%);
    color: #fff7ed;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(249, 115, 22, 0.22);
    flex-shrink: 0;
}

.sidebar-logo-copy {
    min-width: 0;
}

.sidebar-logo .logo-text {
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--lumen-white);
    line-height: 1.15;
    font-family: var(--font-display);
}

.sidebar-logo .logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 3px;
}

.sidebar-context {
    margin: 0 14px 8px;
    padding: 12px 14px;
    border: 1px solid rgba(251, 146, 60, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(249, 115, 22, 0.08), rgba(10, 21, 34, 0.92)),
        rgba(12, 24, 39, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.sidebar-context-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffd0a7;
}

.sidebar-context-value {
    margin-top: 0.25rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--lumen-white);
}

.sidebar-context-meta {
    margin-top: 0.2rem;
    font-size: 0.76rem;
    color: var(--gray-500);
}

.sidebar-nav {
    list-style: none;
    padding: 0 10px;
    flex: 1;
}

.sidebar-nav .nav-section {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    padding: 14px 12px 6px;
}
.sidebar-nav .nav-section-sub {
    padding-top: 18px;
    margin-top: 8px;
    border-top: 1px solid var(--keyline);
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 14px;
    transition: all 0.15s;
    border: 1px solid transparent;
    font-family: var(--font-ui);
}

.sidebar-nav li a:hover {
    background: rgba(22, 38, 58, 0.92);
    border-color: rgba(251, 146, 60, 0.16);
    color: var(--lumen-white);
    transform: translateX(2px);
}

.sidebar-nav li a.active {
    border-color: rgba(251, 146, 60, 0.22);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(22, 38, 58, 0.94));
    color: var(--lumen-white);
    font-weight: 500;
    box-shadow: inset 0 0 0 1px rgba(255, 247, 237, 0.03);
}

.sidebar-nav li a svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.15s;
}

.sidebar-nav li a:hover svg,
.sidebar-nav li a.active svg {
    opacity: 0.8;
}

/* ─── Nav group (collapsible) ─── */
.nav-group { position: relative; }
.nav-group-toggle { cursor: pointer; }
.nav-group-toggle .nav-arrow {
    margin-left: auto;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    opacity: 0.3;
}
.nav-group-toggle.open .nav-arrow { transform: rotate(90deg); }
.nav-sub {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-sub.open { display: block; }
.nav-sub li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 44px;
    font-size: 0.78rem;
    color: var(--gray-500);
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.15s, color 0.15s;
    border: 1px solid transparent;
    font-family: var(--font-ui);
    letter-spacing: 0.01em;
}
.nav-sub li a:hover {
    background: rgba(22, 38, 58, 0.8);
    border-color: rgba(251, 146, 60, 0.14);
    color: var(--lumen-white);
}
.nav-sub li a.active {
    color: #ffd0a7;
    border-color: rgba(251, 146, 60, 0.2);
    background: rgba(249, 115, 22, 0.12);
}

.sidebar-bottom {
    padding: 10px 12px;
    border-top: 1px solid rgba(251, 146, 60, 0.14);
    margin-top: auto;
}

.sidebar-bottom a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 12.5px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: all 0.15s;
    font-family: var(--font-ui);
}

.sidebar-bottom a:hover {
    background: rgba(22, 38, 58, 0.9);
    border-color: rgba(251, 146, 60, 0.16);
    color: var(--lumen-white);
}

.sidebar-bottom a svg {
    width: 16px;
    height: 16px;
    opacity: 0.35;
}

/* Brand footer */
.sidebar-brand {
    padding: 14px 24px 18px;
    font-size: 0.68rem;
    color: var(--gray-500);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    border-top: 1px solid rgba(251, 146, 60, 0.12);
    user-select: none;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    padding: 12px 14px;
    border: 1px solid rgba(52, 80, 110, 0.72);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 31, 49, 0.96), rgba(10, 21, 34, 0.96));
    color: var(--lumen-white);
    font-size: 0.84rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.sidebar-user svg {
    flex-shrink: 0;
    color: #ffd0a7;
}

/* Mobile sidebar toggle */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 101;
    width: 40px;
    height: 40px;
    background: rgba(10, 21, 34, 0.95);
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: var(--radius);
    color: var(--lumen-white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    transition: background var(--transition), border-color var(--transition);
}

.sidebar-toggle:hover {
    background: var(--panel-black);
    border-color: rgba(251, 146, 60, 0.38);
}
.sidebar-toggle svg { width: 24px; height: 24px; }

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99;
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    padding: 2rem 2rem 2.5rem;
    max-width: calc(100vw - var(--sidebar-width));
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ─── Low stock alert ─── */
.alert-stock {
    margin-bottom: 1rem;
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
    animation: alertSlideIn 0.3s ease;
}

@keyframes alertSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.alert-stock-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 18px;
    background: var(--sig-red-bg);
    border: 1px solid #3a1a1a;
    border-radius: var(--radius);
    color: var(--sig-red);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.alert-stock-link:hover {
    background: #3a1a1a;
    border-color: var(--sig-red);
}

.alert-stock-link svg {
    flex-shrink: 0;
    color: var(--sig-red);
}

.alert-stock-action {
    margin-left: auto;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--sig-red);
    white-space: nowrap;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-header:not(.dashboard-hero) {
    position: relative;
    overflow: hidden;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(16, 31, 49, 0.96), rgba(8, 18, 30, 0.98));
    box-shadow: var(--shadow-sm);
}

.page-header:not(.dashboard-hero)::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 68%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    font-weight: 700;
    color: var(--lumen-white);
    letter-spacing: -0.03em;
    font-family: var(--font-display);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.page-subtitle {
    margin-top: 0.35rem;
    max-width: 820px;
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ============================================
   Flash Messages
   ============================================ */
.flash {
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.flash-success {
    background: var(--sig-green-bg);
    border: 1px solid #1a4a2a;
    color: var(--sig-green);
}

.flash-error {
    background: var(--sig-red-bg);
    border: 1px solid #3a1a1a;
    color: var(--sig-red);
}

/* ============================================
   Stats Grid — Instrument Panel Cards
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.stat-card {
    background: linear-gradient(180deg, rgba(16, 31, 49, 0.98), rgba(10, 21, 34, 0.98));
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--keyline);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    font-family: var(--font-ui);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    border-color: var(--keyline-bright);
    background: linear-gradient(180deg, rgba(22, 38, 58, 0.98), rgba(10, 21, 34, 0.98));
    transform: translateY(-2px);
}

.stat-card .stat-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--keyline);
}

.stat-card .stat-icon.blue  { background: var(--accent-bg); border-color: #1a1a3e; }
.stat-card .stat-icon.green { background: var(--sig-green-bg); border-color: #0a2e1a; }
.stat-card .stat-icon.red   { background: var(--sig-red-bg); border-color: #2a0a0a; }
.stat-card .stat-icon.orange{ background: var(--sig-amber-bg); border-color: #2a1a04; }
.stat-card .stat-icon.purple { background: #1a0a3e; border-color: #2a1a4e; }
.stat-card .stat-icon.green-dark { background: var(--sig-green-bg); border-color: #0a2e1a; }

.stat-card .stat-value.purple { color: #a78bfa; }

.stat-card .stat-label {
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-card .stat-value {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--lumen-white);
    letter-spacing: -0.01em;
}

.stat-card .stat-value.green { color: var(--sig-green); }
.stat-card .stat-value.red   { color: var(--sig-red); }
.stat-card .stat-value.blue  { color: var(--accent); }
.stat-card .stat-value.orange{ color: var(--sig-amber); }

/* Gradient stat cards */
.stat-card.gradient {
    color: var(--lumen-white);
    border: none;
}

.stat-card.gradient .stat-label { color: rgba(255,255,255,0.7); }
.stat-card.gradient .stat-value { color: white; }

.stat-card.gradient.primary-bg  { background: var(--gradient-accent); }
.stat-card.gradient.success-bg  { background: var(--gradient-green); }
.stat-card.gradient.warning-bg  { background: var(--gradient-amber); }
.stat-card.gradient.danger-bg   { background: var(--gradient-red); }
.stat-card.gradient.info-bg     { background: var(--gradient-info); }

.stat-card .stat-sub {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
    font-family: var(--font-mono);
}

.stat-card.gradient .stat-sub { color: rgba(255,255,255,0.6); }

/* ============================================
   Cards — Instrument Panels
   ============================================ */
.card {
    background: linear-gradient(180deg, rgba(16, 31, 49, 0.98), rgba(10, 21, 34, 0.98));
    border-radius: var(--radius-md);
    border: 1px solid var(--keyline);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    border-color: var(--keyline-bright);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--keyline);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--lumen-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-family: var(--font-ui);
}

.card-body { padding: 1.5rem; }
.card-body.flush { padding: 0; }
.card-body.centered { text-align: center; }
.card-body.compact { padding: 1.1rem 1.2rem; }

.card--danger  { border-left: 2px solid var(--sig-red); }
.card--warning { border-left: 2px solid var(--sig-amber); }
.card--success { border-left: 2px solid var(--sig-green); }
.card--info    { border-left: 2px solid var(--info); }

.card-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
}

/* ─── Dashboard feedback row ─── */
.feedback-item {
    padding: 0.6rem 0;
    margin-bottom: 0.5rem;
}
.feedback-item:not(:last-child) {
    border-bottom: 1px solid var(--keyline);
}
.feedback-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.feedback-item-text {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
}

/* ─── Dashboard client row ─── */
.client-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--keyline);
}
.client-row-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
}

/* ============================================
   Tables — Aerospace Data Grid
   ============================================ */
.table-wrapper,
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--keyline-dim);
    border-radius: 18px;
    background: rgba(7, 17, 31, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    font-family: var(--font-ui);
}

table thead {
    position: sticky;
    top: 0;
    z-index: 2;
}

table th {
    background: rgba(7, 17, 31, 0.95);
    text-align: left;
    padding: 0.7rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--keyline);
    white-space: nowrap;
}

table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--keyline);
    vertical-align: middle;
    color: var(--gray-700);
}

table tbody tr {
    transition: background var(--transition-fast);
}

table tbody tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

table tbody tr:hover td {
    background: rgba(249, 115, 22, 0.08);
}

table td.table-empty {
    padding: 1.35rem 1rem;
    text-align: center;
    color: var(--gray-500);
}

table .actions {
    white-space: nowrap;
    text-align: right;
}

.table-actions {
    white-space: nowrap;
}

table .actions a {
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-left: 0.2rem;
    display: inline-block;
    transition: all var(--transition-fast);
}

table .actions a:hover {
    transform: scale(1.1);
}

table .actions .table-action-form {
    display: inline-block;
    margin: 0 0 0 0.2rem;
    vertical-align: middle;
}

table .actions .action-icon-btn {
    display: inline-block;
    padding: 0.3rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;
    transition: all var(--transition-fast);
}

table .actions .action-icon-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   Buttons — Lit Switches
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1.4;
    font-family: var(--font-ui);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
    box-shadow: 0 14px 26px rgba(249, 115, 22, 0.24);
    color: white;
}

.btn-success {
    background: var(--gradient-green);
    color: #0a0a0f;
}
.btn-success:hover { opacity: 0.9; color: #0a0a0f; }

.btn-danger {
    background: var(--gradient-red);
    color: white;
}
.btn-danger:hover { opacity: 0.9; color: white; }

.btn-outline {
    background: transparent;
    color: var(--gray-500);
    border: 1px solid var(--keyline);
}
.btn-outline:hover {
    background: rgba(22, 38, 58, 0.92);
    border-color: var(--keyline-bright);
    color: var(--lumen-white);
}

.btn-neutral {
    background: rgba(22, 38, 58, 0.88);
    color: var(--gray-700);
    border: 1px solid var(--keyline);
}

.btn-neutral:hover {
    background: rgba(25, 48, 73, 0.95);
    border-color: var(--keyline-bright);
    color: var(--lumen-white);
}

.btn-sm {
    padding: 0.3rem 0.65rem;
    font-size: 0.78rem;
}

.btn-lg {
    padding: 0.65rem 1.3rem;
    font-size: 0.95rem;
}

.btn-edit {
    background: var(--accent-bg);
    color: var(--accent);
    border: 1px solid var(--keyline);
}
.btn-edit:hover {
    background: rgba(249, 115, 22, 0.18);
    color: var(--accent-light);
    border-color: rgba(251, 146, 60, 0.28);
}

.btn-delete {
    background: var(--sig-red-bg);
    color: var(--sig-red);
    border: 1px solid var(--keyline);
}
.btn-delete:hover {
    background: rgba(69, 19, 19, 1);
    border-color: rgba(248, 113, 113, 0.28);
}

.btn-view {
    background: var(--info-bg);
    color: #7dd3fc;
    border: 1px solid var(--keyline);
}
.btn-view:hover {
    background: rgba(18, 46, 92, 1);
    border-color: rgba(96, 165, 250, 0.28);
}

.btn-telegram {
    background: #0a2a3e;
    color: #22d3ee;
    border: 1px solid var(--keyline);
}
.btn-telegram:hover {
    background: #0a3a5e;
    border-color: rgba(34, 211, 238, 0.25);
    color: #67e8f9;
}

body.confirm-modal-open {
    overflow: hidden;
}

.confirm-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1200;
}

.confirm-modal.is-open {
    display: flex;
}

.confirm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 8, 16, 0.72);
    backdrop-filter: blur(6px);
}

.confirm-modal__dialog {
    position: relative;
    width: min(460px, 100%);
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(251, 146, 60, 0.22);
    background:
        linear-gradient(180deg, rgba(16, 31, 49, 0.98), rgba(8, 18, 30, 0.98));
    box-shadow: var(--shadow-lg);
}

.confirm-modal__eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffd0a7;
}

.confirm-modal__title {
    margin-bottom: 8px;
    color: var(--lumen-white);
    font-size: 1.15rem;
}

.confirm-modal__message {
    margin-bottom: 18px;
    color: var(--gray-600);
    white-space: pre-line;
}

.confirm-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 560px) {
    .confirm-modal__dialog {
        padding: 20px;
        border-radius: 18px;
    }

    .confirm-modal__actions {
        flex-direction: column-reverse;
    }

    .confirm-modal__actions .btn {
        width: 100%;
    }
}

/* ─── Manager cell ─── */
.manager-cell {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.manager-edit-link {
    margin-left: 4px;
    font-size: 0.75rem;
    color: var(--accent);
    text-decoration: none;
    vertical-align: middle;
    transition: opacity var(--transition-fast);
}
.manager-edit-link:hover { opacity: 0.75; color: var(--accent-light); }

/* ============================================
   Forms — Cockpit Controls
   ============================================ */
.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: #ffd0a7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 46px;
    padding: 0.72rem 0.9rem;
    border: 1px solid var(--keyline);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-family: var(--font-ui);
    color: var(--lumen-white);
    background: rgba(13, 26, 42, 0.95);
    transition: all var(--transition);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
    background: rgba(16, 31, 49, 0.98);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--keyline-bright);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--sig-red);
    box-shadow: 0 0 0 2px rgba(239,68,68,0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--keyline);
    flex-wrap: wrap;
}

.form-help {
    display: block;
    margin-top: 0.35rem;
    color: var(--gray-500);
    font-size: 0.8rem;
    line-height: 1.55;
}

/* ============================================
   Filter Bar
   ============================================ */
.filter-bar {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(16, 31, 49, 0.94), rgba(10, 21, 34, 0.94));
    border-radius: var(--radius-md);
    border: 1px solid var(--keyline);
    padding: 0.95rem 1.15rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.filter-bar form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
}

.filter-bar label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffd0a7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.filter-bar input,
.filter-bar select {
    min-height: 42px;
    padding: 0.48rem 0.78rem;
    border: 1px solid var(--keyline);
    border-radius: 12px;
    font-size: 0.83rem;
    font-family: var(--font-ui);
    background: rgba(13, 26, 42, 0.95);
    color: var(--lumen-white);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.filter-bar input::placeholder {
    color: var(--gray-400);
}

.filter-bar input:focus,
.filter-bar select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.filter-bar input[type="text"] { min-width: 170px; }
.filter-bar select { min-width: 140px; }

.btn-filter {
    min-height: 42px;
    padding: 0.35rem 0.95rem;
    border: none;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: white;
    font-size: 0.83rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-ui);
}
.btn-filter:hover { opacity: 0.9; transform: translateY(-1px); }

.filter-reset {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-decoration: none;
    padding: 0.55rem 0.72rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}
.filter-reset:hover {
    color: var(--sig-red);
    background: var(--sig-red-bg);
    border-color: rgba(248, 113, 113, 0.16);
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 3.5rem 1.5rem;
    color: var(--gray-500);
    border: 1px dashed rgba(251, 146, 60, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.empty-state p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-500);
}

/* ============================================
   Badges
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.24rem 0.62rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    gap: 0.25rem;
    border: 1px solid transparent;
}

.badge-success {
    background: var(--sig-green-bg);
    color: var(--sig-green);
    border-color: rgba(52, 211, 153, 0.18);
}

.badge-warning {
    background: var(--sig-amber-bg);
    color: var(--sig-amber);
    border-color: rgba(251, 191, 36, 0.18);
}

.badge-danger {
    background: var(--sig-red-bg);
    color: var(--sig-red);
    border-color: rgba(248, 113, 113, 0.18);
}

.badge-info {
    background: var(--info-bg);
    color: #7dd3fc;
    border-color: rgba(96, 165, 250, 0.18);
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.82rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(251, 146, 60, 0.22);
    background: rgba(249, 115, 22, 0.12);
    color: #ffd0a7;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

.surface-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(180deg, rgba(16, 31, 49, 0.9), rgba(10, 21, 34, 0.9));
    border: 1px solid var(--keyline);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}

.surface-note-label {
    color: #ffd0a7;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.surface-note-copy {
    color: var(--gray-700);
    font-size: 0.92rem;
}

.inline-select {
    min-width: 88px;
    padding: 0.42rem 0.7rem;
    border: 1px solid var(--keyline);
    border-radius: var(--radius-sm);
    background: rgba(13, 26, 42, 0.95);
    color: var(--gray-700);
    font-size: 0.82rem;
    font-family: var(--font-ui);
}

.inline-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.metric-success { color: var(--sig-green); font-weight: 700; }
.metric-warning { color: var(--sig-amber); font-weight: 700; }
.metric-danger { color: var(--sig-red); font-weight: 700; }

.quick-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding: 0.9rem 1rem;
    background: rgba(16, 31, 49, 0.9);
    border: 1px solid var(--keyline);
    border-radius: var(--radius-md);
}

.quick-actions-label {
    color: #ffd0a7;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================
   Info Grid (Product Card)
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.5rem;
}

.info-grid .info-item .info-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.info-grid .info-item .info-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--lumen-white);
    font-family: var(--font-mono);
}

/* ============================================
   Text & Layout utilities
   ============================================ */
.text-success { color: var(--sig-green); }
.text-danger  { color: var(--sig-red); }
.text-muted   { color: var(--gray-500); font-size: 0.85rem; }
.text-sm      { font-size: 0.85rem; }
.text-xs      { font-size: 0.75rem; }
.text-nowrap  { white-space: nowrap; }
.fw-bold      { font-weight: 700; }

.d-flex       { display: flex; }
.flex-wrap    { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1        { gap: 0.25rem; }
.gap-2        { gap: 0.5rem; }
.gap-3        { gap: 0.75rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }

/* Stars */
.stars { display: inline-flex; align-items: center; gap: 1px; }
.star-filled { color: #f59e0b; fill: #f59e0b; }
.star-empty { color: var(--gray-400); }

/* Stock rows */
.stock-row {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--keyline);
    font-size: 0.9rem;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stock-footer {
    margin-top: 0.6rem;
}

.stock-footer a {
    font-size: 0.85rem;
    color: var(--accent);
}

/* Page header actions */
.page-header-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   Dashboard Monthly Panel
   ============================================ */
.dashboard-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-grid-3 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   Progress Bar
   ============================================ */
.progress-bar {
    width: 100%;
    height: 5px;
    background: var(--panel-dark);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar .progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transform-origin: left;
    transition: transform 0.8s ease;
}

.progress-bar .progress-fill.green { background: var(--gradient-green); }
.progress-bar .progress-fill.orange { background: var(--gradient-amber); }
.progress-bar .progress-fill.red { background: var(--gradient-red); }

/* ============================================
   Dropdown Menu
   ============================================ */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--keyline);
    border-radius: var(--radius);
    cursor: pointer;
    background: rgba(13, 26, 42, 0.88);
    font-size: 1.2rem;
    line-height: 1;
    color: var(--gray-500);
    transition: all var(--transition-fast);
}

.dropdown-toggle:hover {
    background: var(--panel-raised);
    border-color: var(--keyline-bright);
    color: var(--gray-700);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 185px;
    background: linear-gradient(180deg, rgba(16, 31, 49, 0.98), rgba(10, 21, 34, 0.98));
    border: 1px solid var(--keyline);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 50;
    padding: 0.4rem;
    margin-top: 0.35rem;
    backdrop-filter: blur(14px);
}

.dropdown-menu.show { display: block; }

.dropdown-menu a,
.dropdown-menu button {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: none;
    background: none;
    color: var(--gray-500);
    font-size: 0.83rem;
    font-family: var(--font-ui);
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition-fast);
    text-align: left;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
    background: var(--panel-raised);
    color: var(--gray-700);
}

/* ============================================
   Multi-Product Table (sales/supplies add)
   ============================================ */
.products-section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--keyline);
}

.products-section h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--lumen-white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.product-rows-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.75rem;
}

.product-rows-table th {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.4rem;
    border-bottom: 1px solid var(--keyline);
    text-align: left;
    white-space: nowrap;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .sidebar-toggle { display: flex; }

    .sidebar {
        transform: translateX(-100%);
        box-shadow: 24px 0 50px rgba(0, 0, 0, 0.28);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay.open {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding: 4.5rem 1rem 1rem;
        max-width: 100vw;
    }

    .sidebar-logo {
        padding-right: 18px;
    }

    .sidebar-user {
        font-size: 0.82rem;
    }

    .filter-bar form {
        gap: 0.4rem;
    }
    .filter-bar select,
    .filter-bar input {
        min-width: 0;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-grid-2,
    .dashboard-grid-3 {
        grid-template-columns: 1fr;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-header,
    .card-header {
        gap: 0.75rem;
    }

    .card-header-actions,
    .page-header-actions {
        width: 100%;
    }

    .card-header-actions {
        margin-left: 0;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .table-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem 0.1rem;
    }
}

/* Touch-friendly targets for mobile devices */
@media (hover: none) and (pointer: coarse) {
    .sidebar-nav li a,
    .sidebar-bottom a,
    .nav-sub li a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* ============================================
   Responsive ≤480px
   ============================================ */
@media (max-width: 480px) {
    .sidebar {
        width: 85vw;
        max-width: 320px;
    }

    .main-content {
        padding: 0.9rem;
        padding-top: 4.1rem;
    }

    .sidebar-nav li a,
    .sidebar-bottom a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .sidebar-nav .nav-sub li a {
        padding: 8px 12px 8px 36px;
    }

    .sidebar-logo {
        gap: 12px;
        padding: 18px 18px 16px;
    }

    .sidebar-logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 1.15rem;
    }

    .page-header h1 {
        font-size: 1.15rem;
    }

    .stat-card {
        padding: 0.9rem 1rem;
    }

    table th,
    table td {
        padding: 0.5rem 0.6rem;
        font-size: 0.78rem;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .filter-bar {
        padding: 0.65rem 0.85rem;
    }

    .filter-bar form {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-bar label {
        white-space: normal;
    }

    .card-header {
        padding: 0.75rem 1rem;
        align-items: flex-start;
        flex-direction: column;
    }

    .card-body {
        padding: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard-grid-2,
    .dashboard-grid-3 {
        grid-template-columns: 1fr;
    }

    .page-header-actions {
        flex-direction: column;
        width: 100%;
    }

    .card-header-actions {
        width: 100%;
    }

    .page-header-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .card-header-actions .btn,
    .card-header-actions a,
    .card-header-actions button {
        width: 100%;
        justify-content: center;
    }

    .table-wrapper {
        margin: 0 -0.85rem;
        border-radius: 0;
        padding: 0 0.85rem 0.1rem;
    }

    table {
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stock-row,
    .alert-stock-link {
        align-items: flex-start;
    }

    .filter-bar form .btn-filter,
    .filter-bar form .filter-reset {
        width: 100%;
        text-align: center;
    }
}
