/*
  토스트 알림 (모든 알림은 토스트로만 표시 - 인라인 노티스 금지)
  위치: 우측 하단
*/

.toast-container {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  pointer-events: none;
}

.toast {
  min-width: 280px;
  max-width: 360px;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
  transform: translateX(0);
}

.toast.toast-success {
  background-color: #16a34a;
}

.toast.toast-error {
  background-color: #dc2626;
}

.toast.toast-warning {
  background-color: #d97706;
}

.toast.toast-info {
  background-color: #1a1a1a;
}

/* ===== HUD 토스트 (Figma식 중앙 하단 · 짧은 액션 피드백) ===== */
.toast-hud-container {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1100;
  pointer-events: none;
}

.toast-hud {
  background-color: #18181b;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast-hud.show {
  opacity: 1;
  transform: translateY(0);
}
