/* Toast notifications */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  background: linear-gradient(90deg, #34a853, #1f9640);
}

.toast-error {
  background: #c8102e;
}

.toast-info {
  background: linear-gradient(90deg, #1f75cb, #1557b0);
}

@media (max-width: 520px) {
  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
