/* Error Toast */
.error-toast {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  z-index: 10000;
  transition: top 0.3s ease;
  max-width: 90%;
  text-align: center;
}

.error-toast.show {
  top: 20px;
}

/* Success Toast */
.success-toast {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #27ae60;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  z-index: 10000;
  transition: top 0.3s ease;
  max-width: 90%;
  text-align: center;
}

.success-toast.show {
  top: 20px;
}

/* Loading Spinner */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
}

.loading-text {
  color: var(--text-light);
  font-size: 1.1rem;
}
