/* Jen základy — Tailwind řešíme CDN třídami v Latte */
:root {
  --app-font-size: 15px;
}

html {
  font-size: var(--app-font-size);
}

/* Custom scrollbar shim (parita s Next verzí) */
.scrollbar-thin::-webkit-scrollbar { width: 6px; height: 6px; }
.scrollbar-thin::-webkit-scrollbar-thumb { background: rgba(100,100,100,.25); border-radius: 3px; }
.scrollbar-thin::-webkit-scrollbar-thumb:hover { background: rgba(100,100,100,.45); }

/* Sidebar scrollbar dark mode */
.dark .scrollbar-thin::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); }

/* Transitions pro theme switch */
html, body { transition: background-color .15s ease, color .15s ease; }
