/* Tailwind CDN で大部分を賄うため、ここはカスタム補完のみ */

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

select, input[type="text"], input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}

.available-good  { color: #16a34a; }
.available-low   { color: #d97706; }
.available-none  { color: #dc2626; }

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 220px;
  text-align: center;
  transition: opacity 0.4s;
}
.toast.hide { opacity: 0; pointer-events: none; }
