/* Doplnkové štýly nad rámec Tailwind utilít */

html {
  scroll-behavior: smooth;
}

[x-cloak] {
  display: none !important;
}

body {
  scroll-padding-top: 5rem;
}

section[id] {
  scroll-margin-top: 5rem;
}

::selection {
  background: #0b3d91;
  color: #ffffff;
}

/* Jemný scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}
