/* ============================================
   LIQUID GLASS DESIGN SYSTEM
   EchelonAlpha - macOS-style glass morphism
   ============================================ */

/* ====================
   CSS VARIABLES
   ==================== */
:root {
  /* Glass colors */
  --glass-tint: rgba(255, 255, 255, 0.15);
  --glass-tint-dark: rgba(0, 0, 0, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.08);
  --glass-shine: rgba(255, 255, 255, 0.3);
  
  /* Accent colors */
  --accent-orange: #f97316;
  --accent-orange-glow: rgba(249, 115, 22, 0.15);
  --accent-green: #22c55e;
  --accent-green-glow: rgba(34, 197, 94, 0.15);
  --accent-blue: #3b82f6;
  --accent-blue-glow: rgba(59, 130, 246, 0.15);
  
  /* Blur values */
  --blur-sm: 3px;
  --blur-md: 8px;
  --blur-lg: 16px;
  --blur-xl: 24px;
  
  /* Transitions */
  --transition-bounce: cubic-bezier(0.175, 0.885, 0.32, 2.2);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================
   BASE GLASS WRAPPER
   ==================== */
.liquid-glass {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  
  color: #0f172a;
  
  box-shadow: 
    0 2px 4px var(--glass-shadow),
    0 0 8px rgba(0, 0, 0, 0.04);
  
  transition: all 0.3s var(--transition-smooth);
}

.liquid-glass:hover {
  box-shadow: 
    0 4px 8px var(--glass-shadow),
    0 0 12px rgba(0, 0, 0, 0.06);
}

/* ====================
   GLASS EFFECT LAYER
   (applies blur + distortion)
   ==================== */
.liquid-glass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
  border-radius: inherit;
}

/* ====================
   TINT LAYER
   (semi-transparent overlay)
   ==================== */
.liquid-glass-tint {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--glass-tint);
  border-radius: inherit;
  pointer-events: none;
}

.liquid-glass-tint--dark {
  background: var(--glass-tint-dark);
}

.liquid-glass-tint--orange {
  background: rgba(249, 115, 22, 0.03);
}

.liquid-glass-tint--green {
  background: rgba(34, 197, 94, 0.03);
}

.liquid-glass-tint--blue {
  background: rgba(59, 130, 246, 0.03);
}

/* ====================
   SHINE LAYER
   (inner light reflections)
   ==================== */
.liquid-glass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  
  box-shadow: 
    inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.3);
}

/* ====================
   CONTENT LAYER
   ==================== */
.liquid-glass-content {
  position: relative;
  z-index: 3;
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ====================
   CARD VARIANTS
   ==================== */

/* Standard card */
.liquid-glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  border: 1px solid var(--glass-border);
}

/* Dark card (for dark backgrounds) */
.liquid-glass-card--dark {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.9) 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
}

/* Accent cards */
.liquid-glass-card--orange {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 
    0 6px 6px var(--glass-shadow),
    0 0 20px var(--accent-orange-glow);
}

.liquid-glass-card--green {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 
    0 6px 6px var(--glass-shadow),
    0 0 20px var(--accent-green-glow);
}

.liquid-glass-card--blue {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 
    0 6px 6px var(--glass-shadow),
    0 0 20px var(--accent-blue-glow);
}

/* Interactive card */
.liquid-glass-card--interactive {
  cursor: pointer;
}

.liquid-glass-card--interactive:hover {
  transform: translateY(-2px) scale(1.01);
}

.liquid-glass-card--interactive:active {
  transform: translateY(0) scale(0.99);
}

/* ====================
   BUTTON STYLES
   ==================== */
.liquid-glass-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  overflow: hidden;
  cursor: pointer;
  border: none;
  
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  border: 1px solid var(--glass-border);
  color: #1e293b;
  
  box-shadow: 
    0 4px 6px var(--glass-shadow),
    0 0 15px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  
  transition: all 0.4s var(--transition-bounce);
}

.liquid-glass-button:hover {
  transform: scale(1.05);
  box-shadow: 
    0 6px 10px var(--glass-shadow),
    0 0 20px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.liquid-glass-button:active {
  transform: scale(0.98);
}

/* Button variants */
.liquid-glass-button--primary {
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    #ea580c 100%
  );
  border-color: rgba(249, 115, 22, 0.5);
  color: white;
  box-shadow: 
    0 4px 6px rgba(249, 115, 22, 0.3),
    0 0 20px var(--accent-orange-glow);
}

.liquid-glass-button--primary:hover {
  box-shadow: 
    0 6px 12px rgba(249, 115, 22, 0.4),
    0 0 30px var(--accent-orange-glow);
}

.liquid-glass-button--secondary {
  background: linear-gradient(
    135deg,
    rgba(241, 245, 249, 0.95) 0%,
    rgba(226, 232, 240, 0.9) 100%
  );
  border-color: rgba(148, 163, 184, 0.3);
  color: #475569;
}

.liquid-glass-button--danger {
  background: linear-gradient(
    135deg,
    #ef4444 0%,
    #dc2626 100%
  );
  border-color: rgba(239, 68, 68, 0.5);
  color: white;
  box-shadow: 
    0 4px 6px rgba(239, 68, 68, 0.3),
    0 0 20px rgba(239, 68, 68, 0.3);
}

.liquid-glass-button--small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 1.5rem;
}

.liquid-glass-button--large {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 2.5rem;
}

/* ====================
   GEMINI INPUT STYLES
   ==================== */
@property --gemini-rotation {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.gemini-input-wrapper {
  --border-size: 2px;
  --gemini-gradient: conic-gradient(from var(--gemini-rotation) at 52% 49% in oklab, oklch(0.63 0.2 251.22) 27%, oklch(0.67 0.21 25.81) 33%, oklch(0.9 0.19 93.93) 41%, oklch(0.79 0.25 150.49) 49%, oklch(0.63 0.2 251.22) 65%, oklch(0.72 0.21 150.89) 93%, oklch(0.63 0.2 251.22));
  animation: gemini-rotate 5s infinite linear;
  border-radius: 1rem;
  background: none;
  position: relative;
  padding: 0;
  border: 2px solid rgba(100, 116, 139, 0.3);
}

.gemini-input-wrapper::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gemini-gradient);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  animation: gemini-rotate 5s infinite linear;
  filter: blur(12px);
  opacity: 0.5;
  border-radius: inherit;
}

.gemini-input-wrapper .gemini-border {
  position: absolute;
  inset: calc(var(--border-size) * -1);
  mask: linear-gradient(white, white);
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.gemini-input-wrapper .gemini-border::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gemini-gradient);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  filter: blur(3px);
}

.gemini-input-wrapper .gemini-inner {
  background: #0f172a;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  border-radius: inherit;
  padding: 0.5rem;
  gap: 0.5rem;
}

.gemini-input-wrapper textarea {
  background: none;
  border: none;
  color: white;
  font-size: 0.875rem;
  font-family: system-ui;
  font-weight: 400;
  flex: 1;
  resize: none;
  padding: 0.5rem;
}

.gemini-input-wrapper textarea:focus {
  outline: none;
}

.gemini-input-wrapper textarea::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

@keyframes gemini-rotate {
  to {
    --gemini-rotation: 360deg;
  }
}

/* ====================
   INPUT STYLES
   ==================== */
.liquid-glass-input {
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  outline: none;
  
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  border: 1px solid var(--glass-border);
  color: #1e293b;
  
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.05),
    0 0 0 0 transparent;
  
  transition: all 0.3s var(--transition-smooth);
}

.liquid-glass-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.05),
    0 0 0 3px var(--accent-orange-glow);
}

.liquid-glass-input::placeholder {
  color: #94a3b8;
}

/* ====================
   BADGE/TAG STYLES
   ==================== */
.liquid-glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  border: 1px solid var(--glass-border);
  color: #64748b;
  
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

.liquid-glass-badge--orange {
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.9), rgba(254, 215, 170, 0.8));
  border-color: rgba(249, 115, 22, 0.3);
  color: #c2410c;
}

.liquid-glass-badge--green {
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.9), rgba(187, 247, 208, 0.8));
  border-color: rgba(34, 197, 94, 0.3);
  color: #15803d;
}

.liquid-glass-badge--red {
  background: linear-gradient(135deg, rgba(254, 226, 226, 0.9), rgba(254, 202, 202, 0.8));
  border-color: rgba(239, 68, 68, 0.3);
  color: #b91c1c;
}

/* ====================
   PANEL/MODAL OVERLAY
   ==================== */
.liquid-glass-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.liquid-glass-modal {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  
  border-radius: 2rem;
  
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border: 1px solid var(--glass-border);
  
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 100px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

/* ====================
   HEADER STYLES
   ==================== */
.liquid-glass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.liquid-glass-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.liquid-glass-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  margin-left: 0.5rem;
}

/* ====================
   ANIMATIONS
   ==================== */
@keyframes liquidGlassAppear {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes liquidGlassPulse {
  0%, 100% {
    box-shadow: 
      0 6px 6px var(--glass-shadow),
      0 0 20px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 
      0 6px 6px var(--glass-shadow),
      0 0 30px var(--accent-orange-glow);
  }
}

.liquid-glass--animate-in {
  animation: liquidGlassAppear 0.5s var(--transition-bounce) forwards;
}

.liquid-glass--pulse {
  animation: liquidGlassPulse 2s ease-in-out infinite;
}

/* ====================
   SCROLLBAR
   ==================== */
.liquid-glass-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.liquid-glass-scroll::-webkit-scrollbar-track {
  background: rgba(241, 245, 249, 0.5);
  border-radius: 3px;
}

.liquid-glass-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #cbd5e1, #94a3b8);
  border-radius: 3px;
}

.liquid-glass-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #94a3b8, #64748b);
}

/* ====================
   UTILITY CLASSES
   ==================== */
.liquid-shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.liquid-shadow-md {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.liquid-shadow-lg {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.liquid-shadow-glow-orange {
  box-shadow: 0 0 20px var(--accent-orange-glow);
}

.liquid-shadow-glow-green {
  box-shadow: 0 0 20px var(--accent-green-glow);
}

.liquid-blur-bg {
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
}

/* ====================
   TABLE STYLES
   (edge-to-edge selection)
   ==================== */
.liquid-table,
.liquid-glass-table {
  width: 100%;
  border-collapse: collapse;
}

.liquid-table th,
.liquid-table td,
.liquid-glass-table th,
.liquid-glass-table td {
  padding: 0.35rem 0.5rem;
  text-align: left;
  color: #334155;
  font-size: 0.65rem;
}

.liquid-table th:first-child,
.liquid-table td:first-child,
.liquid-glass-table th:first-child,
.liquid-glass-table td:first-child {
  padding-left: 0.5rem;
}

.liquid-table th:last-child,
.liquid-table td:last-child,
.liquid-glass-table th:last-child,
.liquid-glass-table td:last-child {
  padding-right: 0.5rem;
}

.liquid-table tbody tr,
.liquid-glass-table tbody tr {
  transition: background-color 0.15s ease;
}

.liquid-table tbody tr:hover,
.liquid-glass-table tbody tr:hover {
  background-color: rgba(249, 115, 22, 0.08);
}

.liquid-table tbody tr.active,
.liquid-glass-table tbody tr.active {
  background-color: rgba(249, 115, 22, 0.15);
}

.liquid-table tbody tr.success,
.liquid-glass-table tbody tr.success {
  background-color: rgba(34, 197, 94, 0.08);
}

.liquid-table tbody tr.muted,
.liquid-glass-table tbody tr.muted {
  opacity: 0.5;
}

.liquid-table thead,
.liquid-glass-table thead {
  background-color: rgba(248, 250, 252, 0.95);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.liquid-table thead th,
.liquid-glass-table thead th {
  font-weight: 600;
  color: #64748b;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ====================
   SECTION GRADIENTS
   (radial background per section)
   ==================== */
.section-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: transparent;
  transition: background 0.5s ease;
}

.section-gradient--blue {
  background: radial-gradient(ellipse 100% 80% at 20% 10%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
}

.section-gradient--teal {
  background: radial-gradient(ellipse 100% 80% at 20% 10%, rgba(20, 184, 166, 0.12) 0%, transparent 60%);
}

.section-gradient--amber {
  background: radial-gradient(ellipse 100% 80% at 20% 10%, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
}

.section-gradient--green {
  background: radial-gradient(ellipse 100% 80% at 20% 10%, rgba(34, 197, 94, 0.12) 0%, transparent 60%);
}

.section-gradient--indigo {
  background: radial-gradient(ellipse 100% 80% at 20% 10%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
}

.section-gradient--purple {
  background: radial-gradient(ellipse 100% 80% at 20% 10%, rgba(147, 51, 234, 0.12) 0%, transparent 60%);
}

.section-gradient--orange {
  background: radial-gradient(ellipse 100% 80% at 20% 10%, rgba(249, 115, 22, 0.12) 0%, transparent 60%);
}

.section-gradient--rose {
  background: radial-gradient(ellipse 100% 80% at 20% 10%, rgba(225, 29, 72, 0.12) 0%, transparent 60%);
}

.ds-badge {
  position: relative;
}

.ds-badge:hover::after,
.ds-badge:focus-visible::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  font-size: 0.625rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 9999;
  pointer-events: none;
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* ============================================
   Forecasting chat — markdown rendering
   ============================================ */
.forecast-chat-md p { margin: 0 0 0.4rem 0; }
.forecast-chat-md p:last-child { margin-bottom: 0; }
.forecast-chat-md strong { font-weight: 600; color: #0f172a; }
.forecast-chat-md em { font-style: italic; }
.forecast-chat-md h1, .forecast-chat-md h2, .forecast-chat-md h3, .forecast-chat-md h4 {
  font-weight: 600; color: #0f172a; margin: 0.5rem 0 0.25rem 0; line-height: 1.25;
}
.forecast-chat-md h1 { font-size: 0.95rem; }
.forecast-chat-md h2 { font-size: 0.9rem; }
.forecast-chat-md h3, .forecast-chat-md h4 { font-size: 0.85rem; }
.forecast-chat-md ul, .forecast-chat-md ol { margin: 0.25rem 0 0.5rem 1.1rem; padding: 0; }
.forecast-chat-md li { margin: 0.1rem 0; }
.forecast-chat-md ul { list-style: disc; }
.forecast-chat-md ol { list-style: decimal; }
.forecast-chat-md code {
  background: rgba(15, 23, 42, 0.06); padding: 1px 4px; border-radius: 3px;
  font-size: 0.78rem; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
}
.forecast-chat-md pre {
  background: rgba(15, 23, 42, 0.06); padding: 0.5rem; border-radius: 6px;
  margin: 0.4rem 0; overflow-x: auto;
}
.forecast-chat-md pre code { background: transparent; padding: 0; }
.forecast-chat-md table {
  width: 100%; border-collapse: collapse; margin: 0.4rem 0; font-size: 0.78rem;
}
.forecast-chat-md th, .forecast-chat-md td {
  border: 1px solid #e2e8f0; padding: 4px 6px; text-align: left;
}
.forecast-chat-md th { background: rgba(15, 23, 42, 0.04); font-weight: 600; }
.forecast-chat-md a { color: #1e40af; text-decoration: underline; }
.forecast-chat-md blockquote {
  border-left: 3px solid #cbd5e1; padding-left: 0.5rem; margin: 0.4rem 0; color: #475569;
}
.forecast-chat-md hr { border: 0; border-top: 1px solid #e2e8f0; margin: 0.5rem 0; }

/* Скрываем Leaflet attribution badge везде */
.leaflet-control-attribution { display: none !important; }

/* ============================================================
   PAX: светлая тема доски разбора маршрута в «AI-аналитике».
   Разметка ConnectAnalyticsBoard общая с тёмной «Связать хабы»;
   класс .pax-light на корне доски перекрашивает тёмные утилиты.
   ============================================================ */
.pax-light {
  background: rgba(255, 255, 255, 0.97) !important;
  border-color: #e2e8f0 !important;
}
/* Фоны */
.pax-light .bg-slate-900\/60, .pax-light .bg-slate-900\/90, .pax-light .bg-slate-900\/95 { background-color: #f1f5f9 !important; }
.pax-light .bg-slate-800, .pax-light .bg-slate-800\/50, .pax-light .bg-slate-800\/60, .pax-light .bg-slate-800\/70 { background-color: #f8fafc !important; }
.pax-light .bg-slate-700, .pax-light .bg-slate-700\/40, .pax-light .bg-slate-700\/50, .pax-light .bg-slate-700\/60, .pax-light .bg-slate-700\/70 { background-color: #e2e8f0 !important; }
.pax-light .hover\:bg-slate-700\/60:hover, .pax-light .hover\:bg-slate-700\/70:hover { background-color: #cbd5e1 !important; }
/* Границы */
.pax-light .border-slate-700, .pax-light .border-slate-700\/70, .pax-light .border-slate-600, .pax-light .border-slate-500, .pax-light .border-slate-400 { border-color: #cbd5e1 !important; }
.pax-light .hover\:border-slate-600:hover, .pax-light .hover\:border-white:hover { border-color: #94a3b8 !important; }
/* Текст: белый/светло-серый -> тёмный (контраст на белом) */
.pax-light .text-white { color: #0f172a !important; }
.pax-light .hover\:text-white:hover { color: #0f172a !important; }
.pax-light .text-slate-100 { color: #1e293b !important; }
.pax-light .text-slate-200, .pax-light .text-slate-200\/90 { color: #334155 !important; }
.pax-light .hover\:text-slate-200:hover { color: #1e293b !important; }
.pax-light .text-slate-300 { color: #475569 !important; }
.pax-light .text-slate-400 { color: #64748b !important; }
/* Акценты: тинтованный текст на светлых плашках (бренд: не серый на цвете) */
.pax-light .text-sky-200, .pax-light .text-sky-200\/90, .pax-light .text-sky-300 { color: #0369a1 !important; }
.pax-light .bg-sky-500\/5, .pax-light .bg-sky-500\/10, .pax-light .bg-sky-500\/15, .pax-light .bg-sky-500\/20, .pax-light .bg-sky-500\/25 { background-color: #e0f2fe !important; }
.pax-light .border-sky-400\/40, .pax-light .border-sky-400\/70, .pax-light .border-sky-500\/30 { border-color: #7dd3fc !important; }
.pax-light .text-amber-200, .pax-light .text-amber-200\/90, .pax-light .text-amber-300 { color: #b45309 !important; }
.pax-light .bg-amber-500\/5, .pax-light .bg-amber-500\/15, .pax-light .bg-amber-500\/20 { background-color: #fef3c7 !important; }
.pax-light .border-amber-400\/40, .pax-light .border-amber-400\/70, .pax-light .border-amber-500\/30 { border-color: #fcd34d !important; }
.pax-light .text-emerald-200\/90, .pax-light .text-emerald-300, .pax-light .text-emerald-300\/90, .pax-light .text-emerald-400 { color: #047857 !important; }
.pax-light .bg-emerald-500\/5, .pax-light .bg-emerald-500\/10, .pax-light .bg-emerald-500\/15, .pax-light .bg-emerald-500\/20 { background-color: #d1fae5 !important; }
.pax-light .border-emerald-500\/30, .pax-light .border-emerald-500\/50 { border-color: #6ee7b9 !important; }
.pax-light .text-rose-300, .pax-light .text-rose-400 { color: #be123c !important; }
.pax-light .bg-rose-500\/5, .pax-light .bg-rose-500\/20 { background-color: #ffe4e6 !important; }
.pax-light .border-rose-500\/30, .pax-light .border-rose-400\/40 { border-color: #fda4af !important; }
