/* Global link underline on hover (Tilda-proof) */
a {
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px; /* joon ei kleepu tähe külge */
  transition: border-color 0.18s ease;
}

a:hover,
a:focus-visible {
  border-bottom-color: currentColor;
}


/* Webkit browsers: Chrome, Safari, Edge */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #b8b2ab;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #9a948e;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #b8b2ab transparent;
}