/* 旭日文旅後台 — 與前台 raisehotel 暖橘 / Noto 一致 */
[x-cloak] { display: none !important; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: 'Noto Sans TC', ui-sans-serif, system-ui, sans-serif; color: #1f2937; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #FFF5EE; }
::-webkit-scrollbar-thumb { background: #F0D4C0; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #FF8C42; }

.toast {
  padding: 0.4rem 0.625rem;
  border: 1px solid;
  font-size: 0.80rem;
  font-family: 'Noto Sans TC', ui-sans-serif, system-ui, sans-serif;
  animation: toast-in 0.3s ease;
}
.toast-success {
  color: #0d9488;
  border-color: rgba(78, 205, 196, 0.45);
  background: rgba(78, 205, 196, 0.12);
}
.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); }
}
