.priority-lds-dual-ring,
.priority-lds-dual-ring:after {
  box-sizing: border-box;
}
.priority-lds-dual-ring {
  display: inline-block !important;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 10;
  left: 10;
  z-index: 10;
}
.priority-lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6.4px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: priority-lds-dual-ring 1.2s linear infinite;
}
@keyframes priority-lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  top: 20px;
  left: 20px;
  max-width: 300px;
  font-size: 13px;
  white-space: pre-wrap;
  background: #f44336; /* Red for error */
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
