/* Fully scoped to avoid breaking theme */
#wsa-occ-root.wsa-occ {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f9fafb;
}

#wsa-occ-root .wsa-occ-page {
  padding: 32px 16px;
}

#wsa-occ-root .wsa-occ-container {
  max-width: 768px;
  margin: 0 auto;
}

#wsa-occ-root .wsa-occ-header {
  text-align: center;
  margin-bottom: 32px;
}

#wsa-occ-root .wsa-occ-h1 {
  margin: 0 0 8px 0;
  font-weight: 800;
  line-height: 1.15;
  font-size: 32px;
  color: #1e3a8a;
}

@media (min-width: 768px) {
  #wsa-occ-root .wsa-occ-h1 { font-size: 40px; }
}

#wsa-occ-root .wsa-occ-sub {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
}

#wsa-occ-root .wsa-occ-meta {
  margin: 8px 0 0 0;
  color: #6b7280;
  font-size: 12px;
}

#wsa-occ-root .wsa-occ-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(17,24,39,0.08);
  border: 1px solid rgba(17,24,39,0.08);
}

#wsa-occ-root .wsa-occ-card-lg {
  padding: 24px;
}

@media (min-width: 768px) {
  #wsa-occ-root .wsa-occ-card-lg { padding: 32px; }
}

#wsa-occ-root .wsa-occ-progress {
  padding: 16px;
  margin-bottom: 24px;
}

#wsa-occ-root .wsa-occ-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

#wsa-occ-root .wsa-occ-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

#wsa-occ-root .wsa-occ-progress-text {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a8a;
}

#wsa-occ-root .wsa-occ-progress-track {
  width: 100%;
  height: 12px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

#wsa-occ-root .wsa-occ-progress-bar {
  height: 12px;
  background: #1e3a8a;
  border-radius: 999px;
  transition: width 300ms ease;
}

#wsa-occ-root .wsa-occ-h2 {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #1e3a8a;
}

#wsa-occ-root .wsa-occ-sub2 {
  margin: 0 0 20px 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.4;
}

#wsa-occ-root .wsa-occ-spacer {
  height: 20px;
}

#wsa-occ-root .wsa-occ-options {
  display: grid;
  gap: 12px;
}

#wsa-occ-root .wsa-occ-option {
  border: 2px solid #d1d5db;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background-color 120ms ease;
  background: #ffffff;
}

#wsa-occ-root .wsa-occ-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17,24,39,0.10);
}

#wsa-occ-root .wsa-occ-option.is-selected {
  border-color: #1e3a8a;
  background: #eff6ff;
}

#wsa-occ-root .wsa-occ-option-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

#wsa-occ-root .wsa-occ-radio {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #9ca3af;
  position: relative;
  flex: 0 0 auto;
  background: #ffffff;
}

#wsa-occ-root .wsa-occ-radio.is-on {
  border-color: #1e3a8a;
  background: #1e3a8a;
}

#wsa-occ-root .wsa-occ-radio.is-on::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 999px;
}

#wsa-occ-root .wsa-occ-option-label {
  color: #1f2937;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
}

#wsa-occ-root .wsa-occ-nav {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

#wsa-occ-root .wsa-occ-btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 120ms ease, transform 120ms ease;
}

#wsa-occ-root .wsa-occ-btn:active {
  transform: translateY(1px);
}

#wsa-occ-root .wsa-occ-btn-primary {
  background: #1e3a8a;
  color: #ffffff;
  margin-left: auto;
}

#wsa-occ-root .wsa-occ-btn-primary:hover {
  background: #1e40af;
}

#wsa-occ-root .wsa-occ-btn-secondary {
  background: #d1d5db;
  color: #374151;
}

#wsa-occ-root .wsa-occ-btn-secondary:hover {
  background: #9ca3af;
  color: #111827;
}

#wsa-occ-root .wsa-occ-hidden {
  display: none !important;
}

#wsa-occ-root .wsa-occ-center {
  text-align: center;
}

#wsa-occ-root .wsa-occ-lead {
  margin: 0;
  font-size: 18px;
  color: #374151;
}

#wsa-occ-root .wsa-occ-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
}

#wsa-occ-root .wsa-occ-icon-info {
  background: #dbeafe;
  color: #1e3a8a;
}

#wsa-occ-root .wsa-occ-icon-success {
  background: #dcfce7;
  color: #16a34a;
}

#wsa-occ-root .wsa-occ-icon-error {
  background: #fee2e2;
  color: #dc2626;
}

#wsa-occ-root .wsa-occ-title-blue { color: #1e3a8a; }
#wsa-occ-root .wsa-occ-title-success { color: #16a34a; }
#wsa-occ-root .wsa-occ-title-error { color: #dc2626; }

#wsa-occ-root .wsa-occ-alert {
  border-left: 4px solid;
  padding: 14px 14px;
  border-radius: 10px;
  margin: 18px 0;
  background: #ffffff;
}

#wsa-occ-root .wsa-occ-alert-blue { border-color: #1e3a8a; background: #eff6ff; }
#wsa-occ-root .wsa-occ-alert-green { border-color: #16a34a; background: #ecfdf5; }
#wsa-occ-root .wsa-occ-alert-red { border-color: #dc2626; background: #fef2f2; }

#wsa-occ-root .wsa-occ-alert-strong {
  margin: 0 0 8px 0;
  font-weight: 800;
  color: #111827;
}

#wsa-occ-root .wsa-occ-small {
  margin: 6px 0 0 0;
  font-size: 13px;
  color: #374151;
}

#wsa-occ-root .wsa-occ-mt { margin-top: 12px; }

#wsa-occ-root .wsa-occ-list {
  margin: 8px 0 0 18px;
  padding: 0;
  color: #374151;
  font-size: 13px;
}

#wsa-occ-root .wsa-occ-list li { margin: 4px 0; }

#wsa-occ-root .wsa-occ-disclaimer {
  margin: 16px 0;
  padding: 14px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #374151;
  font-size: 13px;
  line-height: 1.45;
}

#wsa-occ-root a { text-decoration: none; }
