/* Verification flow styling — layout/behavior mirrors
   https://woodgrovehelpdesk.azurewebsites.net/ (Azure-Samples
   active-directory-verifiable-credentials-dotnet, 6-woodgrove-helpdesk),
   recolored to match www.routt.org's palette:
     navy   #1d3a5e  (primary text / borders / step bars)
     teal   #1c7893  (accent / buttons / links)
     hover  #166075  (button hover)
     page   #f9f9f9  (inherited from css/style.css) */

.verify-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.verify-heading img {
  width: 48px;
  height: auto;
}

.verify-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.verification-card {
  position: relative;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, .12);
  border-radius: 10px;
  padding: 20px 30px;
  flex: 1 1 300px;
  max-width: 352px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  opacity: 1;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

/* Discreet testing toggle: checkbox tucked in the lower-right corner. */
.verify-mode {
  position: absolute;
  bottom: 8px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #9aa5af;
  cursor: pointer;
  user-select: none;
}

.verify-mode input {
  width: 13px;
  height: 13px;
  margin: 0;
  cursor: pointer;
  accent-color: #1c7893;
}

.verify-mode:hover {
  color: #1c7893;
}

.request-id {
  font-size: 11px;
  color: #8a97a3;
  word-break: break-all;
  margin-top: 10px;
}

.verification-card.is-dim {
  opacity: 0.5;
  background-color: #f0f0f0;
}

.verify-step-button {
  background-color: #1c7893;
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.verify-step-button:hover {
  background-color: #166075;
}

.verify-step-button:disabled {
  background-color: #cccccc;
  cursor: default;
}

.verify-step-bar {
  background-color: #1c7893;
  color: #ffffff;
  padding: 10px 20px;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
}

.verify-skip-link {
  font-size: 16px;
  text-decoration: underline;
  color: #1c7893;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.verify-skip-link:hover {
  color: #166075;
}

.ve-card {
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  background: #fafcfd;
  padding: 12px;
  margin: 16px 0;
  cursor: pointer;
}

.ve-card-header {
  font-size: 12px;
  font-weight: bold;
  color: #1c7893;
  margin-bottom: 8px;
}

.ve-card-body {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ve-card-photo img {
  width: 40px;
  height: 40px;
}

.ve-card-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ve-line {
  height: 8px;
  border-radius: 4px;
  background-color: #d8e4ea;
}

.ve-line-wide { width: 90%; }
.ve-line-short { width: 50%; }

.qr-wrap {
  text-align: center;
  margin: 16px 0;
}

.qr-wrap img {
  margin: 0 auto;
}

.status-pill {
  font-size: 14px;
  color: #1d3a5e;
}

.error-pill {
  font-size: 14px;
  color: #a32d2d;
  text-align: center;
  margin-top: 16px;
}

.apps-wrapper {
  text-align: left;
  font-size: 14px;
}
