
/* Toast Notification */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  color: #374151;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(400px);
  transition: all 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 300px;
  width: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.toast.show {
  transform: translateX(0);
}

.toast.success i {
  font-size: 16px;
  color: #22c55e;
  flex-shrink: 0;
}

.toast.error i {
  font-size: 16px;
  color: #ef4444;
  flex-shrink: 0;
}
