/* toast.css */
.toast-container {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  max-width: 80%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.toast-show {
  opacity: 1;
}

.toast-icon {
  margin-right: 10px;
  font-size: 18px;
}

.toast-icon.success {
  color: #4CAF50;
}

.toast-icon.error {
  color: #f44336;
}

.toast-icon.warning {
  color: #FF9800;
}
