/* =========================================
   TIME BUSOLA — SUBMIT OVERLAY
========================================= */

.time-busola-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;

  background: rgba(15, 23, 42, 0.92);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.time-busola-box {
  text-align: center;
  max-width: 320px;
  padding: 24px;
}

.time-busola-spinner {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: busola-spin 1s linear infinite;
}

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

.time-busola-text {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.time-busola-timer {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
