/* Full-screen minimal round loader – theme #0bb488 */
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  transition: opacity 0.25s ease;
}
#global-loader::after {
  content: '';
  width: 48px;
  height: 48px;
  border: 3px solid rgba(11, 180, 136, 0.25);
  border-top-color: #0bb488;
  border-radius: 50%;
  animation: global-loader-spin 0.75s linear infinite;
}
#global-loader.global-loader-hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes global-loader-spin {
  to { transform: rotate(360deg); }
}
