/* Estilos de la página independiente (no afectan a SIGEP) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #0b1220;
  color: #e2e8f0;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
}

.standalone-app {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 18px 28px;
}

.standalone-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.standalone-eyebrow {
  margin: 0 0 4px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #38bdf8;
  font-weight: 700;
}

.standalone-header h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: #f8fafc;
}

.standalone-lead {
  margin: 8px 0 0;
  color: #94a3b8;
  max-width: 54ch;
  line-height: 1.45;
}

.standalone-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
}

.standalone-select {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: #94a3b8;
  min-width: min(280px, 100%);
}

.standalone-select select {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111827;
  color: #f8fafc;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 600;
}

.standalone-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #f8fafc;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.standalone-login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.5);
}

.mapa-wrap {
  margin: 0;
}

.mapa-hint {
  color: #94a3b8;
}

.mapa-hint code {
  background: rgba(255, 255, 255, 0.06);
  padding: .1em .4em;
  border-radius: 6px;
  color: #7dd3fc;
}

.mapa-etapa-banner {
  color: #fde68a;
}

.mapa-etapa-banner strong {
  color: #fbbf24;
}

.mapa-lienzo-shell {
  height: min(82vh, 900px);
  min-height: 620px;
}

@media (max-width: 720px) {
  .standalone-app {
    padding: 14px 12px 20px;
  }
}
