.spinnerr-containerr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.spinnerr {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinnerr-message {
    margin-top: 15px;
    color: #333;
    font-size: 16px;
}

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

.motion-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  transition: opacity 0.5s ease-out;
}

.motion-loading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 140px;
}

.motion-loading-container {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 4px;
  animation: spin 3s linear infinite;
}

.ring-gradient {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #49caea 60deg,
    #2c96ea 120deg,
    #49caea 180deg,
    transparent 240deg,
    transparent 360deg
  );
  position: relative;
  filter: drop-shadow(0 0 8px rgba(44, 150, 234, 0.3));
}

.ring-gradient::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: radial-gradient(circle, #ffffff 0%, #f8fafc 100%);
  border-radius: 50%;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.ripple-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ripple {
  position: absolute;
  width: 45px;
  height: 45px;
  border: 0.5px solid rgba(73, 202, 234, 0.1);
  border-radius: 50%;
  background: transparent;
  animation: ripple 3s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}

.ripple-2 {
  animation-delay: 1.5s;
}

.logo-container {
  position: relative;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  animation: pulse 2s ease-in-out infinite;
}

.logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(44, 150, 234, 0.2));
}

.loading-text {
  font-size: 14px;
  font-weight: 600;
  color: #2c96ea;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1.4);
  }
  50% {
    transform: scale(1.8);
  }
}