/* Minimal custom styles on top of Tailwind CDN */

html {
  scroll-behavior: smooth;
}

/* Offset anchor scrolling for the sticky header */
section[id] {
  scroll-margin-top: 5rem;
}

/* Tame the honeypot completely, regardless of utility classes */
input[name="website"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

body {
  -webkit-font-smoothing: antialiased;
}

/* Nova Poshta autocomplete dropdown */
.np-dropdown {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 4px;
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d4ebdc;
  border-radius: 0.85rem;
  box-shadow: 0 12px 30px -8px rgba(13, 36, 25, 0.25);
}
.np-dropdown li {
  padding: 0.55rem 0.75rem;
  border-radius: 0.6rem;
  font-size: 0.92rem;
  color: #143226;
  cursor: pointer;
  line-height: 1.25;
}
.np-dropdown li:hover,
.np-dropdown li.np-active {
  background: #ecf5ef;
}
.np-dropdown li .np-sub {
  display: block;
  font-size: 0.72rem;
  color: #6b8576;
  margin-top: 1px;
}
.np-empty {
  color: #6b8576;
  cursor: default !important;
}
