/* ===== Inline Styles Moved to CSS ===== */
/* Styles previously inline in HTML, now in CSS for consistency */

/* Onboarding pages */
.onboarding-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 18px;
  text-align: center;
}

.onboarding-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.onboarding-button {
  margin-top: 18px;
}

/* Register page */
.consent-group {
  margin-top: 8px;
}

.register-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

.register-footer-link {
  color: #2563eb;
  text-decoration: none;
  margin: 0 8px;
}

.register-footer-separator {
  color: #d1d5db;
}

/* Admin page */
.admin-pass-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-pass-input {
  flex: 1;
}

.admin-pass-button {
  white-space: nowrap;
}

.admin-pass-note {
  margin-top: 4px;
}

.admin-pass-forgot {
  margin-top: 6px;
}

.admin-pass-forgot-link {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.admin-hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 16px 0;
}

.prizes-note {
  margin-bottom: 10px;
}

.admin-actions-row {
  gap: 8px;
  flex-wrap: wrap;
}

.claims-search-row {
  gap: 8px;
}

.claims-table-wrapper {
  max-height: 320px;
  overflow: auto;
  border: 1px solid #eee;
  border-radius: 12px;
}

.claims-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.claims-table thead {
  position: sticky;
  top: 0;
  background: #f8fafc;
}

.claims-table th {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e5e7eb;
}

/* Delete dialog */
.delete-dialog-inner {
  max-width: 520px;
}

.delete-dialog-message {
  margin-top: 6px;
}

.delete-dialog-card {
  margin-top: 10px;
}

.delete-dialog-checkbox {
  width: auto;
  margin-right: 8px;
}

.delete-dialog-hr {
  border: none;
  border-top: 1px dashed #e5e7eb;
  margin: 8px 0;
}

.delete-dialog-progress {
  margin-top: 8px;
}

/* Client page */
.rules-button-wrapper {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10vh;
  z-index: 1300;
  width: auto;
  display: flex;
  justify-content: center;
}

.rules-button {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tries-counter {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(25vh - 28px);
  text-shadow: 0 1px 0 #fff;
}

/* Popup result */
.popup-result-title {
  text-align: center;
}

.popup-result-text {
  text-align: center;
}

.popup-result-actions {
  justify-content: center;
}

/* Confirm page */
.confirm-page {
  display: none;
}

.confirm-card {
  text-align: center;
}

/* Popups */
.popup-inner-medium {
  max-width: 520px;
}

.popup-inner-large {
  max-width: 800px;
}

.popup-message {
  margin-top: 6px;
}

.popup-card {
  margin-top: 10px;
}

.popup-note {
  margin-top: 8px;
}

.popup-actions-spaced {
  margin-top: var(--space-xl);
  gap: var(--space-md);
}

.popup-primary-button {
  flex: 1;
}

/* Reset PIN popup */
.reset-pin-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text);
}

.reset-pin-continue {
  margin-top: var(--space-lg);
}

.reset-pin-confirm-label {
  display: block;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text);
}

/* Tutorial popup */
.tutorial-video {
  width: 100%;
  max-height: 60vh;
  margin-top: 12px;
  border-radius: 16px;
  background: #000;
}

/* Success popup */
.success-instruction {
  display: none;
}

.version-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 12px;
  line-height: 1.2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  vertical-align: middle;
}
