/* ==========================================================================
   Form Description & Redirect Spinner Styles
   ========================================================================== */

/* Target form descriptions across Drupal core and Webforms */
[class*="description"] {
  font-style: italic !important;
  opacity: 0.85;
}

/* Animated Ring Spinner for Redirect Alert */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.15); /* Light outer track */
  border-top-color: #004575;             /* Dark Blue spinning accent */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
