/* Chronos wait overlay — styles injected by custom_scripts.js;
   this file keeps legacy blockUI hooks harmless if something still calls $.blockUI. */

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

.blockUI.blockOverlay {
  background: rgba(15, 23, 42, 0.42) !important;
  opacity: 1 !important;
}

.blockUI.blockMsg {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Legacy class names kept so old markup does not break */
.custom-block-ui-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 28px 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
}

.custom-block-ui-image,
.animated-loading-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 3px solid #e8f5e9;
  border-top-color: #4caf50;
  animation: cw-spin 0.85s linear infinite;
  background: transparent;
}

.custom-block-ui-text {
  font-size: 16px;
  font-weight: 600;
  color: #1b5e20;
  font-family: Inter, Segoe UI, system-ui, sans-serif;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: none;
}
