/* style.css — penyesuaian kecil di luar utility Tailwind */

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

/* Browser mobile (Safari/Chrome) auto-zoom saat fokus ke input/select/
   textarea dengan font-size < 16px. Dipaksa 16px di sini supaya halaman
   tetap statis saat ketik — zoom manual (pinch) pengguna tetap berfungsi
   normal, ini cuma menghilangkan auto-zoom-nya saja. */
@media (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  background: #bae6fd;
  border-radius: 999px;
}

#app-toast {
  opacity: 0;
}

video,
canvas {
  background: #111827;
}

/* iOS Safari renders <input type="date"> with its own native chrome
   (oversized gray pill, ignores width) unless appearance is reset. */
input[type='date'] {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background-color: #fff;
  min-height: 2.5rem;
  font-family: inherit;
  color: inherit;
}
