/* Toast Notification Styles */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  z-index: 99999;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.toast.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.toast.info {
  background: #cce5ff;
  color: #004085;
  border: 1px solid #b8daff;
}

.toast.warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

@media (max-width: 480px) {
  .toast {
    top: 10px;
    padding: 12px 16px;
    font-size: 13px;
    max-width: 94%;
  }
}
