/* ==========================================================
   GettSleep UX Loaders — Issue #83
   Оверлей при поиске номеров и обработке оплаты
   ========================================================== */

.gs-loader-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.gs-loader-overlay.is-active {
  display: flex;
}

.gs-loader-overlay__spinner {
  width: 52px;
  height: 52px;
  border: 4px solid #e0e0e0;
  border-top-color: #2a6ae0;
  border-radius: 50%;
  animation: gs-spin 0.75s linear infinite;
}

.gs-loader-overlay__text {
  font-size: 15px;
  color: #444;
  font-family: inherit;
}

@keyframes gs-spin {
  to { transform: rotate(360deg); }
}
