/* ===================================
   Tathabbat AI - Main Design System
   نظام التصميم الرئيسي لمنصة تثبّت
   =================================== */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Colors */
  --primary: #0F4C81;
  --primary-light: #1A6BB5;
  --primary-lighter: #2D8AD8;
  --primary-dark: #0A3560;
  --primary-bg: rgba(15, 76, 129, 0.08);
  --primary-bg-hover: rgba(15, 76, 129, 0.12);

  --secondary: #2E7D32;
  --secondary-light: #4CAF50;
  --secondary-lighter: #66BB6A;
  --secondary-dark: #1B5E20;
  --secondary-bg: rgba(46, 125, 50, 0.08);

  --accent: #F5F7FA;
  --accent-dark: #E8ECF1;

  --purple: #7B1FA2;
  --purple-light: #9C27B0;
  --purple-bg: rgba(123, 31, 162, 0.08);

  --orange: #E65100;
  --orange-light: #FF6D00;
  --orange-bg: rgba(230, 81, 0, 0.08);

  --warning: #F59E0B;
  --warning-bg: rgba(245, 158, 11, 0.08);
  --error: #DC2626;
  --error-bg: rgba(220, 38, 38, 0.08);

  /* Surfaces */
  --surface: #FFFFFF;
  --surface-hover: #FAFBFC;
  --background: #F5F7FA;
  --border: #E2E8F0;
  --border-light: #F0F2F5;

  /* Text */
  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;
  --text-tertiary: #9CA3AF;
  --text-inverse: #FFFFFF;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 4px 14px rgba(15, 76, 129, 0.25);
  --shadow-secondary: 0 4px 14px rgba(46, 125, 50, 0.25);

  /* Spacing */
  --sidebar-width: 280px;
  --sidebar-collapsed: 72px;
  --header-height: 70px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Font */
  --font-family: 'Cairo', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--background);
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--accent);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

/* ---- Material Icons ---- */
.material-icons-round {
  font-size: 22px;
  vertical-align: middle;
}

/* ===================================
   LAYOUT: App Shell
   =================================== */

#app {
  min-height: 100vh;
}

.app-layout {
  display: flex;
  min-height: 100vh;
}

.main-wrapper {
  flex: 1;
  margin-right: var(--sidebar-width);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin var(--transition-normal);
}

.main-content {
  flex: 1;
  padding: 28px 32px;
  margin-top: var(--header-height);
}

/* ===================================
   SIDEBAR
   =================================== */

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-inverse);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: width var(--transition-normal);
  overflow: hidden;
}

.sidebar-header {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 90px;
}

.sidebar-logo {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.sidebar-brand {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar-brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: #FFFFFF;
  line-height: 1.3;
}

.sidebar-brand-name-ar {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
  white-space: nowrap;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-weight: 600;
}

.nav-item.active::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: #FFFFFF;
  border-radius: 0 4px 4px 0;
}

.nav-item .material-icons-round {
  font-size: 22px;
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.sidebar-user:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-user-info {
  overflow: hidden;
}

.sidebar-user-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-role {
  font-size: 11px;
  opacity: 0.7;
  white-space: nowrap;
}

/* ===================================
   HEADER
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: var(--sidebar-width);
  height: var(--header-height);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 900;
  transition: right var(--transition-normal);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.header-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-notification {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--accent);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header-notification:hover {
  background: var(--accent-dark);
}

.header-notification .badge {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: var(--error);
  border-radius: var(--radius-full);
  border: 2px solid var(--surface);
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--accent);
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
  background: var(--accent-dark);
}

/* ===================================
   CARDS
   =================================== */

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 24px;
  transition: all var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.card-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Stat Cards */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: width var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
  width: 6px;
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card-icon .material-icons-round {
  font-size: 26px;
  color: var(--text-inverse);
}

.stat-card-info {
  flex: 1;
  min-width: 0;
}

.stat-card-title {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 4px;
}

.stat-card-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-card-subtitle {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-inverse);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 76, 129, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--text-inverse);
  box-shadow: var(--shadow-secondary);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-inverse);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--text-primary);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ===================================
   FORMS
   =================================== */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

.form-input::placeholder {
  color: var(--text-tertiary);
}

.form-input-icon {
  position: relative;
}

.form-input-icon .material-icons-round {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  font-size: 20px;
}

.form-input-icon .form-input {
  padding-right: 46px;
}

/* ===================================
   PROGRESS BAR
   =================================== */

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--accent);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transition: width 800ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-bar.green .progress-bar-fill {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.progress-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.progress-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

/* ===================================
   BADGES
   =================================== */

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.badge-completed {
  background: var(--secondary-bg);
  color: var(--secondary);
}

.badge-in-progress {
  background: var(--primary-bg);
  color: var(--primary);
}

.badge-locked {
  background: var(--accent);
  color: var(--text-tertiary);
}

.badge-available {
  background: var(--orange-bg);
  color: var(--orange);
}

/* ===================================
   TABLE
   =================================== */

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  background: var(--primary);
  color: var(--text-inverse);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.table th:first-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.table th:last-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:hover td {
  background: var(--accent);
}

/* ===================================
   RADIO BUTTONS
   =================================== */

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 14px;
}

.radio-option:hover {
  border-color: var(--primary-light);
  background: var(--primary-bg);
}

.radio-option.selected {
  border-color: var(--primary);
  background: var(--primary-bg);
}

.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  transition: all var(--transition-fast);
  position: relative;
}

.radio-option input[type="radio"]:checked {
  border-color: var(--primary);
  background: var(--primary);
}

.radio-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--text-inverse);
}

/* Radio for table */
.radio-table input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.radio-table input[type="radio"]:checked {
  border-color: var(--primary);
  background: var(--primary);
}

.radio-table input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--text-inverse);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 500ms ease forwards; }
.animate-fade-in-up { animation: fadeInUp 500ms ease forwards; }
.animate-slide-in-right { animation: slideInRight 400ms ease forwards; }
.animate-scale-in { animation: scaleIn 400ms ease forwards; }

.stagger-1 { animation-delay: 50ms; }
.stagger-2 { animation-delay: 100ms; }
.stagger-3 { animation-delay: 150ms; }
.stagger-4 { animation-delay: 200ms; }
.stagger-5 { animation-delay: 250ms; }

/* ===================================
   PAGE TRANSITIONS
   =================================== */

.page-enter {
  animation: fadeInUp 400ms ease forwards;
}

/* ===================================
   EMPTY STATE
   =================================== */

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.empty-state .material-icons-round {
  font-size: 64px;
  color: var(--border);
  margin-bottom: 16px;
}

.empty-state-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.empty-state-text {
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto;
}

/* ===================================
   LOADING SPINNER
   =================================== */

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: var(--radius-full);
  animation: spin 700ms linear infinite;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title .material-icons-round {
  color: var(--primary);
  font-size: 24px;
}

/* ===================================
   MOBILE OVERLAY
   =================================== */

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1099; /* تحت الـ sidebar مباشرة */
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none; /* لا يستقبل نقر عندما يكون مخفياً */
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1200px) {
  .stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 1100; /* فوق الـ overlay */
  }

  .sidebar.open {
    transform: translateX(0);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .sidebar-overlay {
    display: block;
    cursor: pointer;
  }

  .sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .main-wrapper {
    margin-right: 0;
  }

  .header {
    right: 0;
    padding: 0 16px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-content {
    padding: 20px 16px;
  }

  .stat-cards {
    grid-template-columns: 1fr;
  }

  .header-title {
    font-size: 16px;
  }

  /* عناصر الـ nav أكبر على الموبايل */
  .nav-item {
    padding: 14px 16px;
    margin-bottom: 6px;
    -webkit-tap-highlight-color: transparent;
  }

  .sidebar-user {
    padding: 12px 16px;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 16px 12px;
  }

  .card {
    padding: 18px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--primary) !important; }
.text-secondary-color { color: var(--secondary) !important; }
.text-muted { color: var(--text-secondary) !important; }
.text-success { color: var(--secondary) !important; }
.text-error { color: var(--error) !important; }
.text-warning { color: var(--warning) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-accent { background-color: var(--accent) !important; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.hidden { display: none !important; }
