/* ── TurismAI Light Theme — Tailwind osztályok közvetlen felülírása ── */

/* Sötét háttér osztályok → világos zöld */
.bg-neutral-70, .bg-neutral-75, .bg-neutral-80,
[class*="bg-neutral-7"], [class*="bg-neutral-8"] {
  background-color: rgb(244 251 246) !important;
}

/* Közepes sötét háttér → halvány zöld */
.bg-neutral-60, .bg-neutral-65 {
  background-color: rgb(232 240 235) !important;
}

/* Szövegszínek - sötétítés */
.text-neutral-10, .text-neutral-15, .text-neutral-20,
[class*="text-neutral-1"], [class*="text-neutral-2"] {
  color: rgb(22 29 26) !important;
}

/* Border színek */
[class*="border-neutral-7"], [class*="border-neutral-8"] {
  border-color: rgb(192 201 194) !important;
}

/* Primary zöld */
[class*="bg-[#0a6190]"], [class*="bg-[#0A6190]"],
[class*="bg-aura"], [class*="bg-primary"] {
  background-color: rgb(57 103 83) !important;
}

/* Root és body */
html, body, #root, #mount {
  background-color: rgb(244 251 246) !important;
  color: rgb(22 29 26) !important;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
}

/* Input mezők */
input, textarea, select {
  background-color: rgb(255 255 255) !important;
  color: rgb(22 29 26) !important;
}

/* Linkek */
a { color: rgb(57 103 83) !important; }
a:hover { color: rgb(46 86 67) !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgb(244 251 246); }
::-webkit-scrollbar-thumb { background: rgb(181 202 185); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgb(57 103 83); }
