#toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}
.custom-toast {
  min-width: 280px;
  max-width: 450px;
  background: #fff;
  color: #333;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.4s, transform 0.4s;
}
.custom-toast.hide {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.custom-toast-success {
  border-left: 6px solid #198754;
}
.custom-toast-error {
  border-left: 6px solid #dc3545;
}
.custom-toast-warning {
  border-left: 6px solid #ffc107;
}
.custom-toast-icon {
  margin-right: 0.75rem;
  font-size: 1.3em;
}
.custom-toast-success .custom-toast-icon {
  color: #198754;
}
.custom-toast-error .custom-toast-icon {
  color: #dc3545;
}
.custom-toast-warning .custom-toast-icon {
  color: #ffc107;
}
.custom-toast-message {
  flex: 1;
}
.custom-toast-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.3em;
  margin-left: 0.5rem;
  cursor: pointer;
  pointer-events: auto;
}
.custom-toast-close:focus {
  outline: none;
}
