/* Gallaree: global accent gradient (used by buttons, icons, etc.) */
.accent-gradient {
  background-color: #41b8d5; /* fallback */
  background-image: linear-gradient(135deg, #0b1220 0%, #41b8d5 100%);
}

/* --- iOS: prevent "zoomed/pannable" layout caused by horizontal overflow --- */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

#root {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* --- iOS: stop Safari/WKWebView auto-zoom on form inputs (requires >=16px) --- */
@supports (-webkit-touch-callout: none) {
  input, textarea, select {
    font-size: 16px !important;
  }
}
