#loading-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: none; /* hidden until needed */
}

.loading-box {
  background: #222;
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  color: white;
  font-size: 16px;
}

.spinner {
  width: 22px;
  height: 22px;
  border: 3px solid #888;
  border-top-color: #4caf50;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}