#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 260px;
  max-width: 380px;
  padding: 14px 16px;
  border-radius: 8px;
  color: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.toast--visible {
  transform: translateX(0);
  opacity: 1;
}

.toast--notice {
  background: var(--color-green-dark);
}

.toast--alert {
  background: var(--color-red-dark);
}

.toast__close {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
  margin-left: 12px;
}
