/* Minimal Toast Notification Styles */
.toast {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(-60px);
  background: #fff;
  color: #232323;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 99999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  max-width: 90%;
  text-align: center;
  border: 1px solid #e8e8e8;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast.success {
  background: #fff;
  color: #22B573;
  border-color: #22B573;
}

.toast.error {
  background: #fff;
  color: #e74c3c;
  border-color: #e74c3c;
}

@media only screen and (max-width: 767px) {
  .toast {
    top: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    max-width: calc(100% - 2rem);
  }
}
