/* ZNotice — small custom layer on top of Tailwind CDN. */

html,
body {
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Native form controls on dark backgrounds */
select option {
  background-color: #0b1120;
  color: #e2e8f0;
}

/* Slightly nicer focus ring consistency */
:focus-visible {
  outline: 2px solid rgba(16, 185, 129, 0.6);
  outline-offset: 2px;
}

/* Hide the default disclosure marker for FAQ items */
details summary::-webkit-details-marker {
  display: none;
}
details[open] summary {
  color: #34d399;
}

/* Scrollbars (WebKit) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}
