/* =============================================================
   ARC — dynamic loading box (brand recolour)
   -------------------------------------------------------------
   Recolours plugin-arc's loader (.ar-dynamic-loading — the
   twin-star spinner + progress bar shown while author /
   institution / paper profiles load) from its default
   navy + light-blue to the ARC palette:
       brand teal  #0a3d47
       accent green #79ba3a

   The loader markup and base CSS live in the read-only plugin
   (plugin-arc/public/assets/css/plugin.css), so these are
   `body`-prefixed overrides to win on specificity regardless
   of stylesheet load order.
   ============================================================= */

/* Twin-star spinner: dark-teal back star, green front star. */
body .ar-loading-icon::before { background: #0a3d47; }
body .ar-loading-icon::after  { background: #79ba3a; }

/* Indeterminate progress bar sweep. */
body .ar-loading-progress::before {
	background: linear-gradient(90deg, transparent, #0a3d47, transparent);
}

/* Headline in brand teal; submessage stays muted. */
body .ar-loading-message    { color: #0a3d47; }
body .ar-loading-submessage { color: #5c6b66; }
