@font-face { font-family: 'Suisse Sans'; src: url('../assets/fonts/_suisseSans_e8ec54.ttf') format('truetype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Suisse Sans'; src: url('../assets/fonts/_suisseSans_e8ec54-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; }
@font-face { font-family: 'Suisse Sans'; src: url('../assets/fonts/_suisseSans_e8ec54-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Suisse Sans'; src: url('../assets/fonts/_suisseSans_e8ec54-SemiBold-Italic.ttf') format('truetype'); font-weight: 600; font-style: italic; }

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes chipIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulseOnce {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.3); }
  70% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.anim-row { animation: fadeInUp 0.25s ease-out both; }
.anim-fade { animation: fadeIn 0.2s ease-out both; }
.anim-chip { animation: chipIn 0.2s ease-out both; }
.anim-pulse { animation: pulseOnce 0.6s ease-out; }

:root {
  --bg: #f5f5f5; --surface: #fff; --border: #e0e0e0;
  --text: #555; --text-dim: #aaa; --text-bright: #1a1a1a;
  --accent: #2563eb; --accent-dim: #dbeafe; --red: #dc2626;
}

body { font-family: 'Suisse Sans', Arial, Helvetica, sans-serif; background: var(--bg); color: var(--text); font-size: 12px; line-height: 1.5; height: 100vh; overflow: hidden; }
.layout { display: grid; grid-template-columns: 280px 1fr; height: 100vh; }
.hidden { display: none !important; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); }

.c0 { background: #2563eb; } .c1 { background: #dc2626; } .c2 { background: #16a34a; } .c3 { background: #9333ea; }
.c4 { background: #ea580c; } .c5 { background: #0891b2; } .c6 { background: #db2777; } .c7 { background: #ca8a04; }
