:root {
  color-scheme: dark;
  accent-color: #EAA023;

  --bg-base: #070B14;
  --bg-surface: #0B0F19;
  --bg-card: rgba(15, 23, 42, 0.78);
  --bg-card-hover: rgba(24, 32, 54, 0.88);
  --bg-glass: rgba(15, 23, 42, 0.75);

  --fiat-red: #EAA023;
  --fiat-red-light: #FBBF24;
  --fiat-red-dark: #D97706;
  --fiat-red-glow: rgba(234, 160, 35, 0.45);

  --neon-cyan: #EAA023;
  --neon-cyan-glow: rgba(234, 160, 35, 0.45);
  --neon-amber: #EAA023;
  --neon-amber-glow: rgba(234, 160, 35, 0.35);
  --neon-emerald: #10b981;
  --neon-emerald-glow: rgba(16, 185, 129, 0.35);
  --neon-rose: #ef4444;
  --neon-rose-glow: rgba(239, 68, 68, 0.35);
  --neon-purple: #EAA023;

  --gold-gradient: linear-gradient(135deg, #FCD34D 0%, #EAA023 50%, #D97706 100%);
  --gold-hover: linear-gradient(135deg, #FEF08A 0%, #FBBF24 50%, #B45309 100%);
  --gold-shadow: 0 4px 20px rgba(234, 160, 35, 0.45);

  /* Elios Official Chrome, Titanium & Metallic Slate Palette */
  --chrome-silver: #E2E8F0;
  --chrome-light: #FFFFFF;
  --chrome-mid: #94A3B8;
  --chrome-dark: #64748B;
  --chrome-gunmetal: #334155;
  --chrome-slate: #1E293B;
  --chrome-border: rgba(226, 232, 240, 0.25);
  --chrome-border-hover: rgba(255, 255, 255, 0.55);
  --chrome-gradient: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 40%, #94A3B8 75%, #475569 100%);
  --metal-surface: linear-gradient(145deg, rgba(30, 41, 59, 0.75) 0%, rgba(15, 23, 42, 0.9) 100%);

  --border-color: rgba(234, 160, 35, 0.45);
  --border-focus: rgba(234, 160, 35, 0.45);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-cairo: 'Cairo', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
  --font-inter: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --header-height: 68px;
  --sidebar-width: 78px;

  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
  --shadow-neon: 0 0 20px rgba(200, 16, 46, 0.22);
}

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

::selection {
  background: rgba(200, 16, 46, 0.45);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(200, 16, 46, 0.45);
  color: #ffffff;
}

/* ==========================================================================
   Autofill & Autocomplete Override (منع تحول خلفية الحقول للأبيض عند اختيار المقترحات)
   ========================================================================== */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #090e1a inset !important;
  box-shadow: 0 0 0 1000px #090e1a inset !important;
  -webkit-text-fill-color: #f8fafc !important;
  color: #f8fafc !important;
  caret-color: #f8fafc !important;
  transition: background-color 5000000s ease-in-out 0s !important;
}

input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #0c182e inset, 0 0 12px rgba(200, 16, 46, 0.28) !important;
  box-shadow: 0 0 0 1000px #0c182e inset, 0 0 12px rgba(200, 16, 46, 0.28) !important;
  -webkit-text-fill-color: #f8fafc !important;
  color: #f8fafc !important;
  caret-color: #f8fafc !important;
}


body {
  font-family: var(--font-cairo);
  background-color: var(--bg-base);
  background-image:
    radial-gradient(circle at 18% 20%, rgba(200, 16, 46, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 82% 15%, rgba(153, 27, 27, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(200, 16, 46, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

/* ==========================================================================
   Ultra-sleek Elios Gold Scrollbar
   ========================================================================== */
* {
  scrollbar-width: thin;
  scrollbar-color: #EAA023 rgba(7, 11, 20, 0.5);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(7, 11, 20, 0.45);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FBBF24 0%, #EAA023 60%, #D97706 100%);
  border-radius: 9999px;
  border: none;
  box-shadow: 0 0 8px rgba(234, 160, 35, 0.6);
  transition: all 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FCD34D 0%, #F59E0B 50%, #B45309 100%);
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.85);
}

::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Header Bar */
.app-header {
  height: var(--header-height, 68px);
  background: rgba(8, 12, 22, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

/* User Header Section (Right side in physical space / Start in RTL) */
.user-header-section {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 1.1rem;
  background: rgba(12, 18, 32, 0.75);
  border: 1px solid rgba(200, 16, 46, 0.28);
  border-radius: 22px;
  box-shadow: 0 0 14px rgba(200, 16, 46, 0.12);
  transition: all 0.3s ease;
  cursor: pointer;
}

.user-badge:hover {
  border-color: var(--fiat-red-light);
  box-shadow: 0 0 20px rgba(200, 16, 46, 0.3);
}

.user-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--fiat-red-light);
  object-fit: cover;
  box-shadow: 0 0 10px var(--fiat-red-glow);
}

.user-meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
  line-height: 1.25;
}

.user-name-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.user-role-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px 7.5px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: fit-content;
  line-height: 1.35;
}

.role-admin {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fca5a5;
}

.role-manager {
  background: rgba(192, 132, 252, 0.18);
  border: 1px solid rgba(192, 132, 252, 0.45);
  color: #d8b4fe;
}

.role-second-line {
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.45);
  color: #fde68a;
}

.role-customer-service {
  background: rgba(200, 16, 46, 0.18);
  border: 1px solid rgba(200, 16, 46, 0.45);
  color: #fca5a5;
}

/* Brand Section (Left side in physical space / End in RTL) */
.brand-section {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  direction: ltr;
}

.brand-logo-card {
  background: #ffffff !important;
  padding: 4px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  box-shadow: 0 0 16px rgba(234, 160, 35, 0.45), 0 2px 10px rgba(0, 0, 0, 0.4);
  border: 1.5px solid #EAA023;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.brand-logo-card:hover {
  background: #ffffff !important;
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.75), 0 2px 12px rgba(0, 0, 0, 0.5);
  border-color: #FBBF24;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 36px;
  width: auto;
  max-width: 115px;
  object-fit: contain;
  display: block;
}

.brand-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(to right, #ffffff, #E2E8F0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-outfit);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.8px;
}

/* Workspace Layout */
.workspace-wrapper {
  display: flex;
  flex: 1;
  min-height: calc(100vh - var(--header-height, 68px));
  position: relative;
}

/* Side Nav Rail (Fixed / Sticky on scroll) */
.side-nav-rail {
  width: 78px;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0;
  gap: 8px;
  z-index: 90;
  position: sticky;
  top: var(--header-height, 68px);
  height: calc(100vh - var(--header-height, 68px));
  align-self: flex-start;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.side-nav-rail::-webkit-scrollbar {
  display: none;
}

.nav-rail-item {
  width: 62px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.nav-rail-item * {
  pointer-events: none;
}

.nav-rail-item span {
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.1px;
}

.nav-rail-item:hover {
  color: #ffffff;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.35);
  transform: translateY(-2px);
}

.nav-rail-item.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.28), rgba(239, 68, 68, 0.18));
  border: 1px solid var(--fiat-red-light);
  box-shadow: 0 0 16px var(--fiat-red-glow);
}

.nav-rail-item.active::before {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 4px;
  background: var(--fiat-red-light);
  border-radius: 4px 0 0 4px;
  box-shadow: 0 0 10px var(--fiat-red-glow);
}

.nav-rail-spacer {
  flex: 1;
}

.nav-rail-item.logout-item {
  color: var(--fiat-red-light);
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.06);
}

.nav-rail-item.logout-item:hover {
  background: rgba(239, 68, 68, 0.22);
  border-color: var(--fiat-red-light);
  box-shadow: 0 0 16px var(--fiat-red-glow);
  color: #fff;
}

/* Main Container */
.main-container {
  flex: 1;
  padding: 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Glass Panel Base */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.4), transparent);
}

/* Filter & Controls Toolbar */
.filter-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-title-wrap h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-inputs-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.filter-field label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-input,
.filter-select {
  background: rgba(6, 11, 19, 0.85);
  border: 1px solid rgba(200, 16, 46, 0.28);
  border-radius: var(--radius-sm);
  padding: 7px 8px;
  color: #ffffff;
  font-family: var(--font-cairo);
  font-size: 0.8rem;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
  height: 38px;
}

.filter-input[type="date"] {
  font-family: var(--font-outfit);
  direction: ltr;
  text-align: right;
  padding: 7px 6px;
}

.filter-input:focus,
.filter-select:focus {
  border-color: var(--fiat-red-light);
  box-shadow: 0 0 12px var(--fiat-red-glow);
  background: rgba(10, 15, 26, 0.95);
}

.filter-actions-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  height: 38px;
}

.btn-action-primary {
  background: var(--gold-gradient);
  color: #ffffff;
  border: 1px solid var(--fiat-red-light);
  padding: 0 14px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-cairo);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 0 14px var(--fiat-red-glow);
}

.btn-action-excel {
  background: linear-gradient(135deg, #047857 0%, #10b981 100%);
  color: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.6);
  padding: 0 14px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-cairo);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 0 18px var(--neon-emerald-glow);
  white-space: nowrap;
}

.btn-action-excel:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #059669 0%, #34d399 100%);
}

.btn-action-import {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #06b6d4 100%);
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.6);
  padding: 0 14px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-cairo);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.35);
  white-space: nowrap;
}

.btn-action-import:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(59, 130, 246, 0.65);
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 50%, #22d3ee 100%);
}

.btn-action-purge {
  background: linear-gradient(135deg, #991b1b 0%, #ef4444 100%);
  color: #ffffff;
  border: 1px solid rgba(239, 68, 68, 0.6);
  padding: 0 14px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-cairo);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
  white-space: nowrap;
}

.btn-action-purge:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.65);
  background: linear-gradient(135deg, #b91c1c 0%, #f87171 100%);
}

.btn-action-reset {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: var(--text-muted);
  height: 38px;
  width: 38px;
  padding: 0;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-action-reset:hover {
  background: rgba(244, 63, 94, 0.15);
  border-color: var(--neon-rose);
  color: #ffffff;
}

@media (max-width: 1200px) {
  .filter-inputs-grid {
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-field {
    min-width: 130px;
  }
}

/* KPI Summary Cards Grid (سطر واحد - 6 أعمدة) */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: stretch;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-glass);
  min-width: 0;
}

.kpi-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-focus);
  background: var(--bg-card-hover);
}

.kpi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.kpi-title {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kpi-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kpi-value {
  font-family: var(--font-outfit);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 2px 0;
}

.kpi-subtext {
  font-size: 0.68rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1100px) {
  .kpi-grid {
    grid-template-columns: repeat(6, minmax(140px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

/* KPI Card Themes */
.kpi-total {
  border-color: rgba(226, 232, 240, 0.35);
}

.kpi-total .kpi-icon-wrap {
  background: rgba(148, 163, 184, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.5);
  color: #FFFFFF;
  box-shadow: 0 0 14px rgba(226, 232, 240, 0.25);
}

.kpi-total .kpi-value {
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.kpi-inquiries {
  border-color: rgba(203, 213, 225, 0.3);
}

.kpi-inquiries .kpi-icon-wrap {
  background: rgba(148, 163, 184, 0.16);
  border: 1px solid rgba(203, 213, 225, 0.4);
  color: #E2E8F0;
}

.kpi-inquiries .kpi-value {
  color: #E2E8F0;
}

.kpi-complaints {
  border-color: rgba(251, 191, 36, 0.3);
}

.kpi-complaints .kpi-icon-wrap {
  background: rgba(251, 191, 36, 0.15);
  color: var(--neon-amber);
}

.kpi-open {
  border-color: rgba(239, 68, 68, 0.3);
}

.kpi-open .kpi-icon-wrap {
  background: rgba(239, 68, 68, 0.15);
  color: var(--neon-rose);
}

.kpi-open .kpi-value {
  color: var(--neon-rose);
}

.kpi-pending {
  border-color: rgba(251, 191, 36, 0.3);
}

.kpi-pending .kpi-icon-wrap {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.kpi-pending .kpi-value {
  color: #fbbf24;
}

.kpi-closed {
  border-color: rgba(16, 185, 129, 0.3);
}

.kpi-closed .kpi-icon-wrap {
  background: rgba(16, 185, 129, 0.15);
  color: var(--neon-emerald);
}

.kpi-closed .kpi-value {
  color: var(--neon-emerald);
}

.kpi-rate {
  border-color: rgba(200, 16, 46, 0.3);
}

.kpi-rate .kpi-icon-wrap {
  background: rgba(200, 16, 46, 0.15);
  color: var(--fiat-red-light);
}

.kpi-rate .kpi-value {
  color: var(--fiat-red-light);
}

/* Charts Section (All 4 Charts in a Single Row) */
.charts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  min-width: 0;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-header h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chart-canvas-wrap {
  position: relative;
  height: 230px;
  width: 100%;
}

@media (max-width: 1300px) {
  .charts-grid {
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

/* Table Section */
.table-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.table-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.table-title-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.count-pill {
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.35);
  color: var(--fiat-red-light);
  padding: 2px 10px;
  border-radius: 20px;
  font-family: var(--font-outfit);
  font-size: 0.78rem;
  font-weight: 700;
}

.table-search-box {
  background: rgba(6, 11, 19, 0.85);
  border: 1px solid rgba(200, 16, 46, 0.28);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
}

.table-search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-cairo);
  font-size: 0.82rem;
  width: 100%;
}

.table-responsive {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: rgba(6, 11, 19, 0.6);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  text-align: right;
}

thead th {
  background: rgba(15, 23, 42, 0.95);
  color: #94a3b8;
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease;
}

tbody tr:hover {
  background: rgba(200, 16, 46, 0.05);
}

tbody td {
  padding: 10px 14px;
  vertical-align: middle;
  color: #e2e8f0;
}

/* Badges & Statuses */
.record-pill {
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0.3px;
  background: rgba(226, 232, 240, 0.14);
  color: #E2E8F0;
  border: 1px solid rgba(226, 232, 240, 0.35);
}

.record-pill.cmp {
  background: rgba(239, 68, 68, 0.16);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.type-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(226, 232, 240, 0.14);
  color: #E2E8F0;
  border: 1px solid rgba(226, 232, 240, 0.35);
}

.type-badge.complaint {
  background: rgba(239, 68, 68, 0.16);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.status-badge {
  font-family: var(--font-outfit);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.status-confirmed {
  background: rgba(16, 185, 129, 0.16);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.45);
}

.status-open {
  background: rgba(239, 68, 68, 0.16);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.status-pending {
  background: rgba(245, 158, 11, 0.16);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.45);
}

.status-closed {
  background: rgba(16, 185, 129, 0.16);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.45);
}

.status-transfer-done {
  background: rgba(16, 185, 129, 0.16);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.45);
}

.status-transfer-not-done {
  background: rgba(239, 68, 68, 0.16);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.status-transfer-follow {
  background: rgba(245, 158, 11, 0.16);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.45);
}

.btn-view-row {
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.35);
  color: var(--fiat-red-light);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.btn-view-row:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: 0 0 10px var(--fiat-red-glow);
}

/* Modal Styling */
.cyber-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 8, 15, 0.88);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  padding: 1rem;
  transform: translateZ(0);
}

.cyber-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.cyber-modal-card {
  background: #0d1626;
  border: 1px solid var(--fiat-red-light);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 40px rgba(200, 16, 46, 0.3);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  contain: layout style;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.85rem;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-close-modal {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--neon-rose);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-close-modal:hover {
  background: var(--neon-rose);
  color: #fff;
}

.modal-grid-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.modal-meta-box {
  background: rgba(6, 11, 19, 0.8);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.modal-meta-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.modal-meta-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2px;
}

.modal-details-block {
  background: rgba(6, 11, 19, 0.9);
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #f1f5f9;
  white-space: pre-wrap;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-pill {
  background: rgba(13, 22, 38, 0.96);
  border: 1px solid var(--fiat-red-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInToast 0.3s ease forwards;
  pointer-events: auto;
}

.toast-pill.success {
  border-color: var(--neon-emerald);
  color: #34d399;
}

.toast-pill.error {
  border-color: var(--neon-rose);
  color: #fb7185;
}

.toast-pill.info {
  border-color: var(--fiat-red-light);
  color: #fca5a5;
}

@keyframes slideInToast {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Empty State */
.empty-state {
  padding: 3rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

/* Role Badges */
.user-role-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.role-admin {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fca5a5;
}

.role-manager {
  background: rgba(192, 132, 252, 0.18);
  border: 1px solid rgba(192, 132, 252, 0.45);
  color: #d8b4fe;
}

.role-second-line {
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.45);
  color: #fde68a;
}

.role-customer-service {
  background: rgba(200, 16, 46, 0.18);
  border: 1px solid rgba(200, 16, 46, 0.45);
  color: #fca5a5;
}

/* Modal Backdrop for Settings & Admin Auth */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(4, 8, 18, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transform: translateZ(0);
}

.modal-content {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  animation: modalFadeIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  contain: layout style;
  transform: translateZ(0);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(10px);
  }

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

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.9);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #ffffff;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.7rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 22, 0.85);
}

.btn-modal-close {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 0.45rem 1rem;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-cairo);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.12);
  transition: all 0.2s ease;
}

.btn-modal-close:hover {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
  border-color: var(--fiat-red-light) !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(200, 16, 46, 0.35) !important;
  transform: translateY(-1px);
}

.btn-danger-action {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #ffffff;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-cairo);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
  transition: all 0.2s ease;
}

.btn-danger-action:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6) !important;
  transform: translateY(-1px);
}

.btn-secondary-action {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-cairo);
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.12);
  transition: all 0.2s ease;
}

.btn-secondary-action:hover {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
  border-color: var(--fiat-red-light) !important;
  color: #ffffff !important;
  box-shadow: 0 0 18px rgba(200, 16, 46, 0.35) !important;
  transform: translateY(-1px);
}

.btn-gold-sm {
  background: linear-gradient(135deg, #FBBF24 0%, #EAA023 100%);
  border: 1px solid #FBBF24;
  color: #000000;
  font-family: var(--font-cairo);
  font-weight: 800;
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(234, 160, 35, 0.45);
  transition: all 0.2s;
}

.btn-gold-sm:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  box-shadow: 0 6px 18px rgba(234, 160, 35, 0.6);
  color: #000000;
}

/* Settings & Users Management Modal */
.settings-modal-card {
  max-width: 780px !important;
  width: 95% !important;
}

.settings-tabs-header {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
  margin-bottom: 1.2rem;
}

.settings-tab-btn {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  font-family: var(--font-cairo);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.settings-tab-btn.active {
  background: rgba(200, 16, 46, 0.2);
  border-color: var(--fiat-red-light);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(200, 16, 46, 0.35);
}

.users-table-wrap {
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(6, 10, 20, 0.6);
}

.users-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  text-align: right;
}

.users-table th {
  background: rgba(15, 23, 42, 0.95);
  color: #cbd5e1;
  padding: 0.6rem 0.8rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(200, 16, 46, 0.3);
  position: sticky;
  top: 0;
  z-index: 2;
}

.users-table td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

.users-table tr:hover td {
  background: rgba(200, 16, 46, 0.06);
}

.btn-del-user {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  padding: 2px 7px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: all 0.2s;
}

.btn-del-user:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #ffffff;
}

.login-form-group {
  margin-bottom: 1.1rem;
  text-align: right;
}

.login-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.login-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.login-input {
  width: 100%;
  background: rgba(10, 15, 26, 0.85);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 9px;
  padding: 0.65rem 0.9rem;
  color: #ffffff;
  font-family: var(--font-cairo);
  font-size: 0.85rem;
  transition: all 0.2s ease;
  outline: none;
}

.login-input:focus {
  border-color: var(--fiat-red-light);
  box-shadow: 0 0 14px rgba(200, 16, 46, 0.35);
  background: rgba(13, 20, 36, 0.95);
}

.login-input-icon {
  position: absolute;
  left: 10px;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.login-input-icon:hover {
  color: var(--fiat-red-light);
}

/* ==========================================================================
   Developer Signature Credits Card Component (By Eng Ahmed Mohamed)
   ========================================================================== */
.dev-credits-card {
  direction: ltr !important;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem 0.75rem 1.4rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(7, 11, 20, 0.98));
  border: 1.5px solid rgba(200, 16, 46, 0.35);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(200, 16, 46, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  text-align: center;
}

.dev-credits-card:hover {
  border-color: var(--fiat-red-light);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 25px rgba(200, 16, 46, 0.3);
  transform: translateY(-2px);
}

.dev-credits-title {
  direction: ltr !important;
  font-family: var(--font-outfit, 'Outfit', 'Segoe UI', sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0.55rem;
  line-height: 1;
  white-space: nowrap;
}

.dev-by-eng {
  color: var(--fiat-red-light);
  text-shadow: 0 0 10px var(--fiat-red-glow);
}

.dev-name {
  color: #38bdf8 !important;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.65) !important;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.dev-social-links {
  direction: ltr !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.dev-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(22, 34, 56, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.dev-social-btn:hover {
  transform: translateY(-2px) scale(1.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.dev-social-btn.fb-btn:hover {
  background: rgba(24, 119, 242, 0.25);
  box-shadow: 0 0 14px rgba(24, 119, 242, 0.6);
}

.dev-social-btn.wa-btn:hover {
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.6);
}

.dev-social-btn.in-btn:hover {
  background: rgba(10, 102, 194, 0.25);
  box-shadow: 0 0 14px rgba(10, 102, 194, 0.6);
}

.dev-social-btn.ig-btn:hover {
  background: rgba(225, 48, 108, 0.25);
  box-shadow: 0 0 14px rgba(225, 48, 108, 0.6);
}

/* Sidebar Version */
.sidebar-dev-wrapper {
  width: 100%;
  padding: 0 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: 6px;
}

.sidebar-dev-card {
  padding: 0.45rem 0.35rem 0.5rem 0.35rem;
  width: 58px;
  border-radius: 12px;
  border: 1px solid rgba(200, 16, 46, 0.3);
}

.sidebar-dev-card .dev-credits-title {
  direction: ltr !important;
  flex-direction: column;
  gap: 1px;
  font-size: 0.52rem;
  letter-spacing: 0.3px;
  margin-bottom: 0.35rem;
}

.sidebar-dev-card .dev-social-links {
  direction: ltr !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.sidebar-dev-card .dev-social-btn {
  width: 21px;
  height: 21px;
  border-radius: 5px;
}

/* Footer Bar */
.app-system-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 0 1.3rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Load More Button for Table Pagination */
.btn-load-more {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.25), rgba(239, 68, 68, 0.15));
  border: 1px solid rgba(200, 16, 46, 0.45);
  color: #ffffff;
  padding: 0.45rem 1.4rem;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 700;
  font-family: var(--font-cairo), var(--font-outfit);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-load-more:hover {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.45), rgba(239, 68, 68, 0.3));
  border-color: var(--fiat-red-light);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(200, 16, 46, 0.5);
  transform: translateY(-2px);
}

