/* Veteran Driver's License Navigator - Main CSS */

.vdln-mobile-first {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafb;
  color: #1a202c;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#vdln-app {
  width: 100%;
}

@media (max-width: 600px) {
  .vdln-mobile-first {
    padding: 0.5rem;
    font-size: 1.1em;
  }
}

.vdln-accessibility-toggle {
  margin-bottom: 1rem;
}

.vdln-high-contrast {
  background: #000 !important;
  color: #fff !important;
}

.vdln-font-large {
  font-size: 1.3em !important;
}

button.vdln-btn {
  background: #22577a;
  color: #fff;
  border: none;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  cursor: pointer;
  margin: 0.5em 0;
  font-size: 1em;
  transition: background 0.2s;
}
button.vdln-btn:focus {
  outline: 2px solid #38a3a5;
}
button.vdln-btn:hover {
  background: #38a3a5;
}

.vdln-license-image {
  text-align: center;
  margin: 1em 0;
}

.vdln-step {
  margin-bottom: 1.5em;
}

.vdln-support {
  background: #e9f5db;
  border-left: 4px solid #38a3a5;
  padding: 1em;
  border-radius: 6px;
  margin: 1em 0;
}

.vdln-print-link {
  display: inline-block;
  margin-top: 1em;
  color: #22577a;
  text-decoration: underline;
  cursor: pointer;
}

/* Accessibility: ARIA live region */
[aria-live] {
  outline: none;
}
