/* ==========================================================================
   Solicitudes subdomain — premium self-service portal
   Self-contained stylesheet (brand tokens + page styles).
   Mirrors the look of /app pages and the denuncias subdomain.
   ========================================================================== */

:root {
  --brand: #0B6F74;
  --brand-600: #0A6065;
  --brand-50: #E6F5F6;
  --ink: #0F1720;
  --text: #2B3645;
  --muted: #637083;
  --line: #e3e9f0;
  --bg: #f7fafb;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(10, 20, 30, 0.08);

  --ok: #059669;
  --warn: #f97316;
  --err: #dc2626;
}

*,
*::before,
*::after { box-sizing: border-box; }

/* Ensure [hidden] always wins over custom display rules (e.g. .sol-btn: inline-flex). */
[hidden] { display: none !important; }

html, body { height: 100%; }

body {
  margin: 0;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI,
               Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(165deg,
    #eef9fa 0%,
    #ffffff 22%,
    rgba(232, 246, 247, 0.5) 45%,
    #ffffff 72%,
    #f6fcfd 100%
  );
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(11, 111, 116, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(11, 111, 116, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body > * { position: relative; z-index: 1; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-600); text-decoration: underline; }

/* ---- Header --------------------------------------------------------------- */
.sol-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(11, 111, 116, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 50;
}
.sol-header-logo { display: inline-flex; align-items: center; gap: 10px; }
.sol-header-logo img { height: 34px; display: block; }
.sol-header-right { display: inline-flex; gap: 8px; align-items: center; }

/* ---- Page main ------------------------------------------------------------ */
.sol-main {
  padding: 28px 20px 56px;
}
.sol-section {
  max-width: 960px;
  margin: 0 auto;
}

/* Kicker + gradient title */
.sol-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.sol-kicker::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--brand), transparent);
  border-radius: 2px;
}
.sol-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sol-subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---- Glass card ----------------------------------------------------------- */
.sol-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(11, 111, 116, 0.06);
  border-radius: 20px;
  box-shadow:
    0 2px 4px rgba(5, 90, 95, 0.02),
    0 24px 48px -12px rgba(5, 90, 95, 0.1);
  padding: 24px;
}

/* ---- Step wrapper / transitions ------------------------------------------ */
.sol-step {
  display: none;
  animation: solFadeUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.sol-step.is-active { display: block; }

@keyframes solFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Step 1: identification ---------------------------------------------- */
.sol-identify-wrap {
  max-width: 440px;
  margin: 40px auto 0;
}

.sol-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.sol-form-row label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.sol-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.sol-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(11, 111, 116, 0.12);
}
.sol-input.is-error {
  border-color: var(--err);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}
.sol-input[type="date"] { min-height: 48px; }

.sol-error-box {
  display: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff1f1;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.sol-error-box.is-visible { display: block; }

.sol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 2px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(5, 90, 95, 0.04);
}
.sol-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 90, 95, 0.08);
}
.sol-btn:disabled,
.sol-btn[aria-busy="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.sol-btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-color: var(--brand);
  color: #ffffff;
}
.sol-btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand) 100%);
  border-color: var(--brand-600);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11, 111, 116, 0.28);
}
.sol-btn-ghost {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.sol-btn-ghost:hover {
  background: rgba(11, 111, 116, 0.06);
}
.sol-btn-danger {
  background: var(--err);
  border-color: var(--err);
  color: #fff;
}
.sol-btn-danger:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

.sol-btn-block { width: 100%; }

.sol-form-footnote {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

/* ---- Step 2: worker snapshot --------------------------------------------- */
/* Fixed 3-column grid so widths are balanced and never change with content:
     Row 1 — Apellidos·Nombre | DNI/NIE | Fecha nacimiento
     Row 2 — Talla botas | Talla camiseta | Talla pantalón
*/
.sol-trabajador-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(68px, auto);
  gap: 12px 14px;
  padding: 4px 0 8px;
}
.sol-trabajador-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  min-width: 0; /* allow children to wrap/truncate instead of stretching column */
}

.sol-trabajador-item .label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sol-trabajador-item .value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  min-width: 0;
  /* Long "APELLIDO APELLIDO, NOMBRE" wraps inside the cell so the column width
     stays stable across all workers. */
  overflow-wrap: anywhere;
  word-break: break-word;
}
.sol-trabajador-item .value.is-empty { color: var(--muted); font-weight: 500; }

@media (max-width: 720px) {
  .sol-trabajador-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 440px) {
  .sol-trabajador-card { grid-template-columns: 1fr; }
}

.sol-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}
@media (max-width: 540px) {
  .sol-actions-row .sol-btn { flex: 1 1 calc(50% - 10px); }
}

/* ---- Step 3: new request -------------------------------------------------- */
.sol-tabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: var(--brand-50);
  border: 1px solid rgba(11, 111, 116, 0.08);
  border-radius: 14px;
  margin-bottom: 20px;
}
.sol-tab {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.sol-tab:hover { color: var(--brand); }
.sol-tab.is-active {
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 2px 6px rgba(5, 90, 95, 0.08);
}

.sol-tab-panel { display: none; }
.sol-tab-panel.is-active { display: block; animation: solFadeUp 0.2s ease; }

/* EPI grid of chips / cards */
.sol-epi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.sol-epi-chip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.sol-epi-chip:hover {
  border-color: rgba(11, 111, 116, 0.3);
  box-shadow: 0 4px 12px rgba(5, 90, 95, 0.06);
}
.sol-epi-chip.is-selected {
  border-color: var(--brand);
  background: var(--brand-50);
  box-shadow: 0 6px 18px rgba(11, 111, 116, 0.12);
}
.sol-epi-chip-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.sol-epi-chip-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.sol-epi-chip-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}
.sol-epi-chip-toggle:hover {
  border-color: var(--brand);
}
.sol-epi-chip.is-selected .sol-epi-chip-toggle {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.sol-epi-chip-body {
  display: none;
  flex-direction: column;
  gap: 8px;
}
.sol-epi-chip.is-selected .sol-epi-chip-body { display: flex; }

.sol-epi-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sol-epi-row label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 68px;
}
.sol-epi-row input,
.sol-epi-row select {
  flex: 1;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.sol-epi-row input:focus,
.sol-epi-row select:focus {
  outline: none;
  border-color: var(--brand);
}
.sol-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sol-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
  padding: 0;
}
.sol-qty-btn:hover { border-color: var(--brand); color: var(--brand); }
.sol-qty-input {
  width: 54px;
  text-align: center;
  padding: 6px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 0.88rem;
}
.sol-qty-input:focus { outline: none; border-color: var(--brand); }

/* Documentación list */
.sol-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.sol-doc-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.sol-doc-chip input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}
.sol-doc-chip:hover {
  border-color: rgba(11, 111, 116, 0.3);
  color: var(--brand);
}
.sol-doc-chip.is-selected {
  border-color: var(--brand);
  background: var(--brand-50);
  color: var(--brand);
}
.sol-doc-extra {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.sol-doc-extra-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}
.sol-doc-extra-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.sol-doc-extra-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.sol-doc-extra-fields label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}
.sol-doc-extra-input {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  min-width: 170px;
  transition: border-color 0.2s ease;
}
.sol-doc-extra-input:focus {
  outline: none;
  border-color: var(--brand);
}
.sol-doc-extra-hint {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Otro form */
.sol-otro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.sol-otro label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.sol-textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid var(--line);
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sol-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(11, 111, 116, 0.12);
}

/* ---- Cart + submit -------------------------------------------------------- */
.sol-cart {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}
.sol-cart-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.sol-cart-empty {
  padding: 10px 12px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
.sol-cart-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sol-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--brand-50);
}
.sol-cart-item-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.sol-cart-item-meta {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.sol-cart-tipo-badge {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #ffffff;
  color: var(--brand);
  border: 1px solid rgba(11, 111, 116, 0.18);
  vertical-align: middle;
}
.sol-cart-item .sol-cart-remove {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.sol-cart-item .sol-cart-remove:hover {
  background: rgba(220, 38, 38, 0.1);
  color: var(--err);
}

/* ---- Mis solicitudes list ------------------------------------------------- */
.sol-mine {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sol-mine-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}
.sol-mine-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sol-mine-concepto {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.sol-mine-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.sol-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sol-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.sol-pill-pendiente   { color: #92400e; background: #fef3c7; }
.sol-pill-en_proceso  { color: #1e3a8a; background: #dbeafe; }
.sol-pill-entregado   { color: #065f46; background: #d1fae5; }
.sol-pill-rechazado   { color: #991b1b; background: #fee2e2; }

/* ---- Success screen ------------------------------------------------------- */
.sol-success {
  text-align: center;
  padding: 20px 10px;
}
.sol-success-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(5, 150, 105, 0.25);
  background: #ecfdf5;
  color: var(--ok);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sol-success-items {
  list-style: none;
  padding: 0;
  margin: 18px auto;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.sol-success-items li {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---- Details toggle ------------------------------------------------------- */
.sol-collapse {
  margin-top: 20px;
}
.sol-collapse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.sol-collapse-head:hover { border-color: var(--brand); }
.sol-collapse-chevron { transition: transform 0.2s ease; }
.sol-collapse.is-open .sol-collapse-chevron { transform: rotate(90deg); }
.sol-collapse-body {
  display: none;
  margin-top: 10px;
}
.sol-collapse.is-open .sol-collapse-body { display: block; }

/* ---- Footer --------------------------------------------------------------- */
.sol-footer {
  text-align: center;
  padding: 28px 20px 40px;
  font-size: 0.8rem;
  color: var(--muted);
}
.sol-footer a { color: var(--muted); text-decoration: underline; text-decoration-color: rgba(99, 112, 131, 0.35); }
.sol-footer a:hover { color: var(--brand); }

/* ---- Helpers -------------------------------------------------------------- */
.sol-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.sol-section-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.sol-section-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ---- Responsive tweaks ---------------------------------------------------- */
@media (max-width: 640px) {
  .sol-header { padding: 10px 14px; }
  .sol-header-logo img { height: 28px; }
  .sol-main { padding: 18px 12px 40px; }
  .sol-card { padding: 18px; border-radius: 16px; }
  .sol-tabs { flex-direction: row; }
  .sol-tab { padding: 10px 8px; font-size: 0.82rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sol-step, .sol-tab-panel { animation: none; }
  * { transition: none !important; }
}
