.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-body {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast i {
  font-size: 1.2rem;
}

/* Color schemes */
.toast.success {
  background-color: #198754;
}
.toast.danger {
  background-color: #dc3545;
}
.toast.warning {
  background-color: #ffc107;
  color: #333;
}
.toast.info {
  background-color: #0dcaf0;
  color: #000;
}

.toast .close-btn {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  cursor: pointer;
}
