/* apps/ayasys/static/css/loading.css */
.ayasys-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.ayasys-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid #cbd5e1;      /* slate-300 */
  border-top-color: #4f46e5;       /* indigo-600 */
  border-radius: 50%;
  animation: ayasys-spin 1s linear infinite;
}
@keyframes ayasys-spin {
  to { transform: rotate(360deg); }
}
