/* Loader pantalla completa */
#loader {
  position: fixed;
  inset: 0;
  background-color: #ffffff; /* o #0083cb si querés color scout */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinner animado */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #0083cb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: girar 1s linear infinite;
}

@keyframes girar {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
