/* Joie de Inn Admin - brand-navy #2c3e50, brand-gold #c9a961 */

body {
  font-family: 'Inter', 'Noto Sans TC', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[x-cloak] {
  display: none !important;
}

.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toast notification */
.toast {
  padding: 0.4rem 0.625rem;
  border: 1px solid;
  font-size: 0.80rem;
  font-family: 'JetBrains Mono', monospace;
  animation: toast-in 0.3s ease;
}
.toast-success {
  color: #0db768;
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.1);
}
.toast-error {
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(1rem); }
  to { opacity: 1; transform: translateX(0); }
}

@media print {
  aside, .no-print { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}
