/* ===========================================
   08-registro.css — Módulo de registro
   =========================================== */

/* Login Page */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(247, 72, 136, 0.28), transparent 24%),
    radial-gradient(circle at bottom left, rgba(0, 168, 184, 0.18), transparent 28%),
    linear-gradient(135deg, var(--c26-primary-strong), var(--c26-primary-soft));
}

.login-container {
  width: 100%;
  max-width: 440px;
  padding: 1rem;
}

.login-card {
  background: var(--c26-surface);
  border-radius: var(--c26-card-radius);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--c26-glass-shadow);
}

.login-logo {
  height: 55px;
  width: auto;
}

.login-title {
  font-family: var(--c26-font-headings);
  color: var(--c26-primary);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.login-subtitle {
  color: var(--c26-text-soft);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-login {
  background: linear-gradient(135deg, var(--c26-accent), var(--c26-accent-soft));
  color: white;
  font-family: var(--c26-font-headings);
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  box-shadow: 0 14px 24px rgba(247, 72, 136, 0.28);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-login:hover {
  background: linear-gradient(135deg, #ff5e98, var(--c26-accent));
  color: white;
  box-shadow: 0 18px 30px rgba(247, 72, 136, 0.34);
}

.login-back-link {
  color: var(--c26-text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.login-back-link:hover {
  color: var(--c26-primary);
}

/* =====================
   Panel Layout
===================== */
.panel-wrapper {
  display: flex;
  min-height: 100vh;
}

.panel-main {
  flex: 1;
  margin-left: 260px;
  padding: 2.25rem;
  background:
    radial-gradient(circle at top right, rgba(0, 133, 147, 0.06), transparent 20%),
    linear-gradient(180deg, #f7f9fc, var(--c26-bg));
}

@media (max-width: 991.98px) {
  .panel-main {
    margin-left: 0;
  }
}

/* =====================
   Sidebar
===================== */
.sidebar {
  width: 260px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background:
    radial-gradient(circle at top, rgba(247, 72, 136, 0.16), transparent 26%),
    linear-gradient(180deg, var(--c26-primary), var(--c26-primary-strong));
  color: white;
  display: flex;
  flex-direction: column;
  z-index: 1030;
  overflow-y: auto;
  box-shadow: 16px 0 36px rgba(0, 22, 76, 0.18);
}

.sidebar-header {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-logo {
  height: 40px;
  width: auto;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-user-icon {
  font-size: 2rem;
  opacity: 0.7;
}

.sidebar-user-name {
  font-family: var(--c26-font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c26-cyan-soft);
}

.sidebar-user-role {
  font-size: 0.75rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.25rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: var(--c26-font-headings);
  font-size: 0.9rem;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.sidebar-link:hover, .sidebar-link.active {
  background: rgba(255,255,255,0.06);
  color: white;
}

.sidebar-link.active {
  border-left: 3px solid var(--c26-accent);
  background: linear-gradient(90deg, rgba(247,72,136,0.16), transparent);
}

.sidebar-link i {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease, transform 0.3s ease;
}

.sidebar-link:hover i {
  color: var(--c26-cyan-soft);
  transform: scale(1.1);
}

.sidebar-link.active i {
  color: var(--c26-accent);
}

.sidebar-link-danger:hover {
  background: rgba(247, 72, 136, 0.15);
  color: var(--c26-accent);
}

.sidebar-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0;
}

/* =====================
   Dashboard Cards
===================== */
.dash-card {
  background: var(--c26-surface);
  border-radius: var(--c26-card-radius);
  box-shadow: var(--c26-shadow);
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.2s ease;
}

.dash-card:hover {
  transform: translateY(-3px);
}

.dash-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dash-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}

.dash-card-title {
  font-family: var(--c26-font-headings);
  font-size: 1.1rem;
  color: var(--c26-primary);
  margin: 0;
}

.dashboard-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dashboard-stats-track {
  min-width: 0;
}

.dash-card-compact {
  padding: 1.2rem 1.35rem;
  border-radius: 1.1rem;
}

.dash-card-compact .dash-card-header {
  gap: 0.75rem;
  margin-bottom: 0;
}

.dash-card-compact .dash-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.18rem;
}

.dash-card-compact .dash-card-title {
  font-size: 1.05rem;
  line-height: 1;
}

.dash-card-header-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dash-card-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  min-width: 0;
}

.dash-card-value-inline {
  font-family: var(--c26-font-headings);
  font-size: 1.7rem;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .dashboard-stats-strip {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x proximity;
  }

  .dashboard-stats-track {
    flex: 0 0 180px;
    scroll-snap-align: start;
  }
}

/* =====================
   Project Card
===================== */
.project-card {
  background: var(--c26-surface);
  border-radius: var(--c26-card-radius);
  border: 1px solid var(--c26-border-soft);
  box-shadow: var(--c26-soft-shadow);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 22, 76, 0.14);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-id {
  font-family: var(--c26-font-accent-1);
  color: var(--c26-primary);
  font-size: 1.1rem;
}

.badge-estado {
  font-family: var(--c26-font-headings);
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.badge-captura { background: #fff3cd; color: #856404; }
.badge-completado { background: #cce5ff; color: #004085; }
.badge-validado { background: #d4edda; color: #155724; }

.progress-checks {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.progress-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--c26-text-soft);
  padding: 0.4rem 0.7rem;
  background: rgba(0, 22, 76, 0.04);
  border-radius: 999px;
}

.progress-check.done {
  color: #1c8f4c;
  background: rgba(28, 143, 76, 0.10);
}

.progress-check.done i {
  color: #1c8f4c;
}

.project-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.indicator-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.84rem;
  line-height: 1;
  color: var(--c26-text-soft);
  background: rgba(0, 22, 76, 0.05);
  border: 1px solid rgba(0, 22, 76, 0.08);
  white-space: nowrap;
}

.indicator-badge::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(0, 22, 76, 0.2);
  flex: 0 0 auto;
}

.indicator-badge.completed {
  color: #1c8f4c;
  background: rgba(28, 143, 76, 0.1);
  border-color: rgba(28, 143, 76, 0.18);
}

.indicator-badge.completed::before {
  background: #1c8f4c;
  box-shadow: 0 0 0 4px rgba(28, 143, 76, 0.12);
}

/* =====================
   Forms
===================== */
.form-section {
  background: var(--c26-surface);
  border-radius: var(--c26-card-radius);
  border: 1px solid var(--c26-border-soft);
  box-shadow: var(--c26-soft-shadow);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.form-section-title {
  font-family: var(--c26-font-headings);
  color: var(--c26-primary);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--c26-bg);
}

.form-label {
  color: var(--c26-text-soft);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
}

.form-control:focus, 
.form-select:focus {
  border-color: var(--c26-cyan-soft);
  box-shadow: 0 0 0 4px rgba(0, 168, 184, 0.15);
}

/* =====================
   Welcome Banner
===================== */
.welcome-banner {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 28%),
    linear-gradient(135deg, var(--c26-cyan), var(--c26-cyan-soft));
  color: white;
  border-radius: var(--c26-card-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.welcome-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(247, 72, 136, 0.1);
  border-radius: 50%;
}

.welcome-banner h2 {
  font-family: var(--c26-font-accent-1);
  position: relative;
  z-index: 1;
}

.welcome-banner p,
.welcome-banner form {
  position: relative;
  z-index: 1;
}

/* =====================
   Page Header
===================== */
.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  flex-wrap: nowrap;
  font-family: var(--c26-font-headings);
  color: var(--c26-primary);
  font-size: 1.8rem;
  margin: 0;
}

.page-header h1::after {
  content: 'Concurso Nacional de Creatividad e Innovacion Tecnologica 2026';
  display: inline-block;
  color: var(--c26-text-soft);
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-family: var(--c26-font-headings);
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .page-header h1 {
    gap: 0.55rem;
  }

  .page-header h1::after {
    font-size: 0.4em;
  }
}

.registration-period-alert {
  display: flex;
  align-items: center;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(247, 72, 136, 0.14), rgba(255, 189, 91, 0.28));
  border: 1px solid rgba(247, 72, 136, 0.38);
  color: #8d204c;
  box-shadow: 0 14px 30px rgba(247, 72, 136, 0.14);
}

.registration-period-alert i {
  color: #e15b28;
}

.breadcrumb-item a {
  color: var(--c26-primary-soft);
  text-decoration: none;
}

/* =====================
   Tables
===================== */
.table-panel {
  background: var(--c26-surface);
  border-radius: var(--c26-card-radius);
  box-shadow: var(--c26-shadow);
  overflow: hidden;
}

.table-panel .table {
  margin-bottom: 0;
}

.table-panel .table thead th {
  background: var(--c26-bg);
  font-family: var(--c26-font-headings);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c26-text-soft);
  border: none;
  padding: 1rem;
}

.table-panel .table td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
}

/* =====================
   Dashboard Map
===================== */
.dashboard-map-panel,
.dashboard-map-summary {
  height: 100%;
}

.dashboard-map-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at top right, rgba(247, 72, 136, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(0, 22, 76, 0.06), rgba(0, 22, 76, 0.02));
  border: 1px solid rgba(0, 22, 76, 0.08);
  box-shadow: 0 10px 20px rgba(0, 22, 76, 0.07);
}

.dashboard-map-header .map-detail-state {
  max-width: 100%;
}

.dashboard-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.map-legend-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 22, 76, 0.04);
  border: 1px solid rgba(0, 22, 76, 0.08);
  color: var(--c26-text-soft);
  font-size: 0.85rem;
}

.map-legend-swatch,
.map-summary-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.map-legend-swatch.status-missing,
.map-summary-dot.status-missing {
  background: #cfd6e4;
}

.map-legend-swatch.status-empty,
.map-summary-dot.status-empty {
  background: #c7d3f6;
}

.map-legend-swatch.status-capture,
.map-summary-dot.status-capture {
  background: #ffbd5b;
}

.map-legend-swatch.status-progress,
.map-summary-dot.status-progress {
  background: #00a8b8;
}

.map-legend-swatch.status-validated,
.map-summary-dot.status-validated {
  background: #1c8f4c;
}

.dashboard-map-shell {
  position: relative;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(247, 72, 136, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(0, 22, 76, 0.03), rgba(0, 22, 76, 0.01));
  border: 1px solid var(--c26-border-soft);
  padding: 1rem;
}

.dashboard-map-shell .dashboard-map-header {
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  justify-content: center;
  align-items: flex-start;
}

.dashboard-map-stage {
  width: 100%;
  min-height: 560px;
  padding-top: 1.9rem;
}

.dashboard-map-tooltip {
  position: absolute;
  z-index: 3;
  transform: translateY(-100%);
  pointer-events: none;
  padding: 0.6rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(0, 22, 76, 0.92);
  color: #fff;
  font-family: var(--c26-font-headings);
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(0, 22, 76, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.dashboard-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-state {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 1.75;
  transition: opacity 0.2s ease, fill 0.2s ease, stroke 0.2s ease, stroke-width 0.2s ease, filter 0.2s ease;
}

.map-state:focus,
.map-state:focus-visible {
  outline: none;
}

.map-state.is-clickable:hover {
  filter: brightness(1.04) drop-shadow(0 8px 14px rgba(0, 22, 76, 0.18));
  cursor: pointer;
}

.map-state.is-selected {
  stroke: #f74888;
  stroke-width: 3;
  filter: drop-shadow(0 10px 18px rgba(247, 72, 136, 0.28));
}

.map-state.is-disabled {
  opacity: 0.55;
}

.map-state.state-missing {
  fill: #cfd6e4;
}

.map-state.state-empty {
  fill: #c7d3f6;
}

.map-state.state-capture {
  fill: #ffbd5b;
}

.map-state.state-progress {
  fill: #00a8b8;
}

.map-state.state-validated {
  fill: #1c8f4c;
}

.map-summary-subtitle {
  font-family: var(--c26-font-headings);
  color: var(--c26-primary);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.map-detail-panel {
  padding-top: 0.15rem;
}

.map-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.map-detail-header-right {
  justify-content: flex-end;
}

.map-detail-header-copy {
  min-width: 0;
}

.dashboard-map-header .map-detail-header-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.dashboard-map-shell .dashboard-map-legend {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  max-width: min(36%, 14.75rem);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.2rem;
  margin-bottom: 0;
  padding: 0.38rem 0.55rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 22, 76, 0.08);
  border: 1px solid rgba(0, 22, 76, 0.08);
}

.dashboard-map-shell .dashboard-map-legend::before {
  content: 'Estatus';
  display: block;
  margin-bottom: 0.08rem;
  font-family: var(--c26-font-headings);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c26-primary);
}

.map-detail-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.map-detail-actions-inline {
  justify-content: center;
}

.dashboard-map-header .map-detail-actions .btn {
  min-height: 1.75rem;
  padding-inline: 0.52rem;
  padding-block: 0.08rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--c26-text-soft);
  border-color: rgba(0, 22, 76, 0.12);
  box-shadow: 0 10px 20px rgba(0, 22, 76, 0.12);
  font-size: 0.82rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.dashboard-map-header .map-detail-actions .btn[hidden] {
  display: none !important;
}

.dashboard-map-header .map-detail-actions .btn:hover {
  transform: translateY(-1px);
  background: #fff;
  color: var(--c26-primary);
  border-color: rgba(247, 72, 136, 0.24);
  box-shadow: 0 12px 22px rgba(247, 72, 136, 0.16);
}

.dashboard-map-header .map-detail-actions .btn:focus,
.dashboard-map-header .map-detail-actions .btn:active {
  color: var(--c26-primary);
}

.dashboard-map-shell .map-detail-actions {
  position: relative;
  z-index: 1;
}

.map-detail-state {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 1rem 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c26-primary), var(--c26-primary-soft));
  color: #fff;
  font-family: var(--c26-font-headings);
  font-size: 1.28rem;
  letter-spacing: 0.035em;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(0, 22, 76, 0.16);
  text-transform: uppercase;
}

.dashboard-map-shell .map-legend-chip {
  gap: 0.38rem;
  padding: 0;
  font-size: 0.73rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--c26-text-soft);
  white-space: nowrap;
}

.dashboard-map-shell .map-legend-swatch {
  width: 0.58rem;
  height: 0.58rem;
}

.map-detail-meta {
  color: var(--c26-text-soft);
  font-size: 0.96rem;
  margin: 0.95rem 0 1rem;
}

.map-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.map-detail-card {
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, rgba(0, 22, 76, 0.03), rgba(0, 22, 76, 0.01));
  border: 1px solid rgba(0, 22, 76, 0.08);
}

.map-detail-label {
  display: block;
  color: var(--c26-text-soft);
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}

.map-detail-value {
  font-family: var(--c26-font-headings);
  color: var(--c26-primary);
  font-size: 1.45rem;
  line-height: 1;
}

.map-detail-recent-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.map-detail-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: rgba(0, 22, 76, 0.03);
  border: 1px solid rgba(0, 22, 76, 0.06);
}

.map-detail-project-id {
  font-size: 0.78rem;
  color: var(--c26-text-soft);
  margin-bottom: 0.12rem;
}

.map-detail-project-name {
  font-weight: 600;
  line-height: 1.25;
}

.map-detail-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: rgba(0, 22, 76, 0.03);
  border: 1px solid rgba(0, 22, 76, 0.06);
}

.map-detail-summary-label {
  font-weight: 600;
  line-height: 1.25;
}

.map-detail-summary-total {
  min-width: 2.25rem;
  text-align: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 22, 76, 0.08);
  color: var(--c26-primary);
  font-family: var(--c26-font-headings);
  font-size: 0.95rem;
  line-height: 1;
}

.map-detail-empty {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(0, 22, 76, 0.03);
  color: var(--c26-text-soft);
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .dashboard-map-header {
    min-height: 2.6rem;
  }

  .dashboard-map-stage {
    min-height: 420px;
    padding-top: 4.5rem;
  }

  .map-detail-header {
    flex-direction: column;
  }

  .dashboard-map-header .map-detail-actions {
    justify-content: flex-end;
  }

  .dashboard-map-header .map-detail-header-copy {
    left: 0;
    right: 0;
    transform: none;
  }

  .dashboard-map-shell .dashboard-map-legend {
    position: static;
    max-width: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 2.4rem;
  }
}

/* =====================
   Btn helpers
===================== */
.btn-accent {
  background: linear-gradient(135deg, var(--c26-accent), var(--c26-accent-soft));
  color: white;
  border: none;
  box-shadow: 0 12px 20px rgba(247, 72, 136, 0.22);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #ff5e98, var(--c26-accent));
  color: white;
}

.btn-primary-c26 {
  color: white;
}
