/* Sparrow Hotel 後台 — 與前台一致的 Urban Minimalist 白底簡約 */
[x-cloak] { display: none !important; }
body { font-family: 'Inter', 'Noto Sans TC', sans-serif; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #F5F3F0; }
::-webkit-scrollbar-thumb { background: #E7E5E4; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #78716C; }

/* 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); }
}
