.woocommerce-input-wrapper.cev-city-control {
  position: relative;
  display: block;
}

.cev-city-loading-status[hidden] {
  display: none !important;
}

.cev-city-control.cev-city-loading .cev-city-loading-status {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid #8bcbdc;
  border-radius: 6px;
  background: #f0faff;
  color: #16475a;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  cursor: progress;
  pointer-events: none;
}

.cev-city-control.cev-city-loading {
  cursor: progress;
}

.cev-city-loading-spinner {
  display: inline-block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: 2px solid #c4e6f0;
  border-top-color: #008fb9;
  border-right-color: #008fb9;
  border-radius: 50%;
  animation: cev-city-loading-spin .8s linear infinite;
}

@keyframes cev-city-loading-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .cev-city-loading-spinner { animation: none; }
}
