body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.verify-page {
  background: #ffffff;
  min-height: 100vh;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

.verify-meta {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0 12px;
}

.verification-badge {
  display: inline-block;
  background: #198754;
  color: #fff;
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 8px;
}

.verify-message {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.verify-student {
  margin: 4px 0;
}

.verify-small {
  margin: 0;
  font-size: 13px;
  color: #5f6368;
}

.verify-qr {
  margin-top: 10px;
  width: 100px;
  height: 100px;
  border: 1px solid #e8eaed;
  border-radius: 8px;
}

.spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner-overlay.hidden {
  display: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #d9e5f7;
  border-top-color: #3070bf;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

@media (max-width: 576px) {
  .verify-meta {
    top: 10%;
    width: calc(100% - 24px);
  }

  .verify-message {
    font-size: 15px;
  }
}
