body {
  font-family: "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background: #fff;
  color: #0a1f44; /* dark navy text */
  text-align: center;
}

#status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#message {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.sub-message {
  font-size: 16px;
  color: #5a6a85;
  margin-bottom: 20px;
}

.loader-ring {
  border: 3px solid #e0e0e0;
  border-top: 3px solid #0a1f44;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #0a1f44;
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 80%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
}

.checkmark {
  font-size: 48px;
  margin-bottom: 20px;
  display: none;
}

#error {
  display: none;
  color: #0a1f44;
}

#retry-btn {
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

#retry-btn:hover {
  background-color: #0056b3;
}