#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: center;
  min-width: 300px;
  max-width: 400px;
  background-color: #fff;
  border-left: 5px solid;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.success {
  border-left-color: #22c55e;
}

.toast.success .toast-icon {
  color: #22c55e;
}

.toast.error {
  border-left-color: #ef4444;
}

.toast.error .toast-icon {
  color: #ef4444;
}

.toast.info {
  border-left-color: #3b82f6;
}

.toast.info .toast-icon {
  color: #3b82f6;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.toast-message {
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

.toast-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.2rem;
}

.toast-close:hover {
  color: #4b5563;
}