#galleria-loading-overlay {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.galleria-loading-box {
  background: #fff;
  color: #222;
  font-weight: bold;
  font-size: 1.18rem;
  border-radius: 14px;
  padding: 36px 38px 32px 38px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.galleria-loading-spinner {
  width: 38px;
  height: 38px;
  border: 4px solid #ffb3b3;
  border-top: 4px solid #ff5757;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
