@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

/* Smooth scrolling for custom scrollbars */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.5);
  border-radius: 20px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(107, 114, 128, 0.8);
}

/* Oprava subpixelových mezer v Leafletu */
.leaflet-tile {
  /* Vytvoří neviditelný 1px přesah, který překryje případné mezery */
  outline: 1px solid transparent;
  /* Vynutí akceleraci na GPU pro přesnější vykreslení */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}