/* src/styles/utils/variables.css */
/* === ЦВЕТА === */
:root {
  /* Основные цвета */
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --secondary-color: #27ae60;
  --secondary-dark: #219653;
  --danger-color: #e74c3c;
  --danger-dark: #c0392b;
  --warning-color: #ff9800;
  --info-color: #3498db;

  /* Фоны */
  --bg-primary: #2c3e50;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --bg-gray: #f8f9fa;

  /* Текст */
  --text-primary: #333333;
  --text-secondary: #6c757d;
  --text-light: #f8f9fa;
  --text-muted: #7f8c8d;

  /* Границы */
  --border-color: #e9ecef;
  --border-light: #ecf0f1;

  /* Тени */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);

  /* Радиусы */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Отступы */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 40px;

  /* Шрифты */
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-sm: 0.9rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.3rem;
  --font-size-xxl: 1.5rem;
}