/* Ceylon Driver Themed Spinner with Animated Steering Wheel */
.ceylon-spinner-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceylon-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #e3d5be;
  border-top: 6px solid #1a374d;
  border-radius: 50%;
  animation: ceylon-spin 1s linear infinite;
  box-shadow: 0 4px 16px rgba(26,55,77,0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steering-wheel-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  animation: steering-spin 1.2s linear infinite reverse;
  pointer-events: none;
}

@keyframes ceylon-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes steering-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.ceylon-spinner-text {
  margin-top: 18px;
  text-align: center;
  color: #1a374d;
  font-family: 'Inter', 'Source Serif Pro', serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
