/* Panel de reporte: shell con zona transparente al mapa + panel lateral (desktop) o inferior (mobile). */

.reporte-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  pointer-events: none;
}

.reporte-overlay__scrim {
  position: absolute;
  inset: 0;
  /* Velo muy liviano: el mapa debe verse bien al elegir ubicación */
  background: rgba(15, 23, 42, 0.04);
  pointer-events: none;
}

.reporte-overlay__shell {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Zona que deja pasar clics/taps al mapa (Leaflet) debajo del overlay */
.reporte-overlay__map-slot {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  pointer-events: none;
}

/* Refuerzo: hueco sobre el mapa y velo no capturan puntero (el panel ya tiene pointer-events: auto en la regla base) */
body.reporte-modal-map-active .reporte-overlay__map-slot,
body.reporte-modal-map-active .reporte-overlay__scrim {
  pointer-events: none !important;
}

.reporte-overlay__panel {
  flex: 0 0 min(28rem, 100%);
  width: min(28rem, 100%);
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow: hidden;
  pointer-events: auto;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
}

.reporte-overlay__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.reporte-overlay__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 var(--space-2);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.reporte-overlay__intro {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  max-width: 32rem;
}

@media (min-width: 640px) {
  .reporte-overlay__head {
    padding-bottom: var(--space-2);
  }

  .reporte-overlay__title {
    margin-bottom: 0.35rem;
  }

  .reporte-modal__location-hint--mobile-only {
    display: none;
  }
}

.reporte-overlay__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin: -0.25rem -0.25rem 0 0;
  border: none;
  border-radius: var(--radius-md);
  background: #f1f5f9;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.reporte-overlay__close:hover {
  background: #e2e8f0;
  color: var(--color-text);
}

/* Solo mobile: control de mapa fuera del formulario (visible también en modo “Ampliar mapa”) */
.reporte-overlay__map-toggle {
  display: none;
}

.reporte-banner {
  margin: 0 var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.4;
}

.reporte-banner--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.reporte-banner--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.reporte-banner--success .reporte-success-panel {
  text-align: left;
}

.reporte-success-panel__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #065f46;
}

.reporte-success-panel__lead {
  margin: 0 0 var(--space-3);
  font-size: 0.875rem;
  line-height: 1.45;
  color: #047857;
}

.reporte-success-panel__details {
  margin: 0 0 var(--space-2);
  border: none;
}

.reporte-success-panel__details-summary {
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.35rem 0;
  list-style: none;
}

.reporte-success-panel__details-summary::-webkit-details-marker {
  display: none;
}

.reporte-success-panel__details[open] .reporte-success-panel__details-summary {
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.reporte-success-panel__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text);
}

.reporte-success-panel__list li {
  margin-bottom: 0.35rem;
}

.reporte-success-panel__list li:last-child {
  margin-bottom: 0;
}

.reporte-success-panel__list strong {
  font-weight: 700;
  color: var(--color-text);
}

.reporte-label-required {
  margin-left: 0.15rem;
  font-weight: 800;
  color: #b45309;
  text-decoration: none;
  cursor: help;
}

.reporte-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
}

.reporte-form__submit[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.92;
}

.reporte-submit-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: reporte-spin 0.65s linear infinite;
  flex-shrink: 0;
}

@keyframes reporte-spin {
  to {
    transform: rotate(360deg);
  }
}

.reporte-form {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  padding-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.reporte-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.reporte-modal__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
}

.reporte-modal__label--secondary {
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.reporte-modal__location-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--color-border);
}

.reporte-modal__location-hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text);
  line-height: 1.45;
}

.reporte-modal__location-hint strong {
  font-weight: 700;
  color: var(--color-brand);
}

.reporte-modal__location-status {
  margin: 0;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  line-height: 1.45;
  background: #fff;
  border: 1px solid var(--color-border);
}

.reporte-modal__location-status-line[data-location-status="pending"] {
  color: var(--color-text-muted);
}

.reporte-modal__location-status-line[data-location-status="ok"] {
  color: #047857;
  font-weight: 600;
}

.reporte-modal__location-hint--short {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.4;
}

.reporte-modal__coords-details {
  margin: 0;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-2);
}

.reporte-modal__coords-summary {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.25rem 0;
  list-style: none;
}

.reporte-modal__coords-details[open] > .reporte-modal__coords-summary {
  margin-bottom: var(--space-2);
}

.reporte-modal__coords-details .reporte-modal__coords-grid {
  margin-top: var(--space-2);
}

.btn-map-secondary {
  width: 100%;
  justify-content: center;
  background: #fff;
  color: var(--color-brand);
  border: 1px solid rgba(13, 79, 139, 0.35);
  box-shadow: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.btn-map-secondary:hover {
  background: rgba(13, 79, 139, 0.06);
  transform: none;
}

.reporte-overlay__shell--map-focus .btn-map-secondary {
  border-color: var(--color-brand);
  background: rgba(13, 79, 139, 0.08);
}

.reporte-modal__coords-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.reporte-modal__coords-fallback {
  margin: 0;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.reporte-modal__hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.reporte-modal__input,
.reporte-modal__textarea,
.reporte-modal__select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.reporte-modal__textarea {
  resize: vertical;
  min-height: 5rem;
}

.reporte-modal__input:focus,
.reporte-modal__textarea:focus,
.reporte-modal__select:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(13, 79, 139, 0.15);
}

.reporte-modal__input--file {
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  border: none;
  background: transparent;
}

.reporte-modal__input--file::file-selector-button {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-right: 0.75rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: #f8fafc;
  color: var(--color-text);
  cursor: pointer;
}

.reporte-modal__input--file::file-selector-button:hover {
  background: #f1f5f9;
}

.reporte-fotos-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.reporte-fotos-preview__item {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 0.35rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #f1f5f9;
  flex-shrink: 0;
}

.reporte-fotos-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reporte-modal__input--error,
.reporte-modal__textarea--error,
.reporte-modal__select--error {
  border-color: #dc2626;
}

.reporte-modal__input--file.reporte-modal__input--error::file-selector-button {
  border-color: #dc2626;
  color: #991b1b;
}

.reporte-modal__field-errors {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.75rem;
  color: #b91c1c;
}

.reporte-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
  padding-top: var(--space-2);
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  position: sticky;
  bottom: 0;
  background: linear-gradient(to top, var(--color-surface) 85%, transparent);
  padding-bottom: var(--space-1);
}

.reporte-form__actions .btn {
  min-width: 7rem;
}

/* Mobile: mapa arriba (zona transparente), formulario abajo */
@media (max-width: 639px) {
  .reporte-overlay__map-toggle {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: calc(100% - 2 * var(--space-3));
    margin: 0 var(--space-3) var(--space-2);
    box-sizing: border-box;
    background: var(--color-brand);
    color: #fff;
    border-color: transparent;
  }

  /* Gana sobre .reporte-overlay__shell--map-focus .btn-map-secondary (fondo claro + texto ilegible) */
  .reporte-overlay__shell--map-focus .reporte-overlay__map-toggle.btn-map-secondary,
  .reporte-overlay__shell--mobile-stage-pick .reporte-overlay__map-toggle.btn-map-secondary {
    background: var(--color-brand);
    color: #fff;
    border-color: transparent;
  }

  .reporte-overlay__shell--map-focus .reporte-overlay__map-toggle.btn-map-secondary:hover,
  .reporte-overlay__shell--mobile-stage-pick .reporte-overlay__map-toggle.btn-map-secondary:hover {
    background: #0a3d6b;
    color: #fff;
  }

  .reporte-overlay__shell {
    flex-direction: column;
  }

  .reporte-overlay__map-slot {
    flex: 1 1 42vh;
    min-height: 32vh;
    max-height: 52vh;
  }

  .reporte-overlay__shell--map-focus .reporte-overlay__map-slot {
    flex: 1 1 68vh;
    min-height: 50vh;
    max-height: 78vh;
  }

  .reporte-overlay__shell--map-focus .reporte-overlay__panel {
    flex: 0 1 auto;
    max-height: 38vh;
  }

  .reporte-overlay__panel {
    flex: 0 1 auto;
    max-height: 58vh;
    width: 100%;
    border-left: none;
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.12);
    border-radius: 1rem 1rem 0 0;
  }

  .reporte-form__actions {
    flex-direction: column-reverse;
  }

  .reporte-form__actions .btn {
    width: 100%;
  }

  .reporte-modal__coords-grid {
    grid-template-columns: 1fr;
  }

  .reporte-banner--success {
    max-height: min(38vh, 260px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 640px) {
  /* El botón de mapa solo existe en mobile */
  #btn-reporte-mapa-ubicacion {
    display: none !important;
  }
}

/* —— Mobile: modo enfocado (clase reporte-mobile-focus en body) —— */
@media (max-width: 639px) {
  body.reporte-mobile-focus .site-header,
  body.reporte-mobile-focus .site-footer {
    display: none !important;
  }

  /* Solo hero y KPIs: la sección del mapa (.home-map-section) debe seguir visible o Leaflet queda en display:none y “Ampliar mapa” muestra solo el overlay vacío */
  body.reporte-mobile-focus .home-public > section.home-hero,
  body.reporte-mobile-focus .home-public > section.home-kpis {
    display: none !important;
  }

  /* Lista lateral de ejemplo: ocupa espacio; el mapa real sigue en .home-map-main */
  body.reporte-mobile-focus .home-sidebar {
    display: none !important;
  }

  body.reporte-mobile-focus .reporte-overlay__scrim {
    background: rgba(15, 23, 42, 0.06);
  }

  /* En etapa “solo mapa”: no repetir el mismo texto que el picker encima del mapa */
  body.reporte-mobile-focus .reporte-overlay__shell--mobile-stage-pick .reporte-overlay__intro {
    display: none !important;
  }

  body.reporte-mobile-focus .reporte-overlay__panel {
    border-radius: 0;
    max-height: 100%;
    box-shadow: none;
    padding-top: env(safe-area-inset-top, 0);
  }

  body.reporte-mobile-focus .reporte-overlay__head {
    padding: var(--space-3);
    padding-bottom: var(--space-2);
  }

  body.reporte-mobile-focus .reporte-overlay__title {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
  }

  body.reporte-mobile-focus .reporte-overlay__intro {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  body.reporte-mobile-focus .reporte-banner {
    margin: 0 var(--space-3);
    padding: var(--space-2) var(--space-3);
    font-size: 0.8125rem;
  }

  body.reporte-mobile-focus .reporte-banner--success {
    max-height: min(34vh, 220px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.reporte-mobile-focus .reporte-form {
    padding: var(--space-3);
    gap: var(--space-3);
    padding-bottom: max(var(--space-2), env(safe-area-inset-bottom, 0px));
  }

  body.reporte-mobile-focus .reporte-modal__location-block {
    padding: var(--space-2);
    gap: var(--space-2);
  }

  body.reporte-mobile-focus .reporte-modal__location-hint {
    font-size: 0.75rem;
  }

  body.reporte-mobile-focus .reporte-modal__coords-grid .reporte-modal__input {
    font-size: 0.75rem;
    padding: 0.35rem 0.45rem;
  }

  body.reporte-mobile-focus .reporte-modal__coords-grid .reporte-modal__label--secondary {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  body.reporte-mobile-focus .reporte-modal__coords-fallback {
    font-size: 0.5625rem;
    margin-top: -0.15rem;
  }

  body.reporte-mobile-focus .reporte-form__actions {
    padding-top: var(--space-3);
    padding-bottom: max(var(--space-3), env(safe-area-inset-bottom, 0px));
    margin-top: 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.06);
    position: sticky;
    bottom: 0;
    z-index: 2;
  }

  /* Ampliar mapa: priorizar superficie del mapa y minimizar formulario */
  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-overlay__map-slot {
    flex: 1 1 82vh;
    min-height: 62vh;
    max-height: 90vh;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-overlay__panel {
    flex: 0 0 auto;
    max-height: min(28vh, 220px);
    min-height: 0;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-overlay__intro {
    display: none;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-overlay__title {
    font-size: 0.9375rem;
    margin: 0;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-overlay__head {
    padding: var(--space-2) var(--space-3);
    border-bottom: 1px solid var(--color-border);
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-form > *:not(.reporte-form__actions):not(.reporte-modal__field--fotos) {
    display: none !important;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-form {
    flex: 0 0 auto;
    overflow: visible;
    padding: 0 var(--space-3) max(var(--space-2), env(safe-area-inset-bottom, 0px));
    gap: 0;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-form__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: stretch;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    margin-top: 0;
    border-top: none;
    box-shadow: none;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-form__actions .btn {
    flex: 1;
    min-width: 0;
    width: auto;
    font-size: 0.8125rem;
    padding: 0.5rem 0.5rem;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus #btn-reporte-enviar {
    font-weight: 700;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--map-focus .reporte-overlay__map-toggle {
    margin-bottom: var(--space-2);
    padding: 0.42rem 0.75rem;
    font-size: 0.8125rem;
  }

  /* Etapa 1 (móvil): mapa protagonista; formulario oculto hasta tener punto */
  .reporte-overlay__shell--mobile-stage-pick .reporte-form {
    display: none !important;
  }

  .reporte-overlay__shell--mobile-stage-pick .reporte-overlay__panel {
    flex: 0 0 auto;
    max-height: min(22vh, 160px);
  }

  .reporte-overlay__shell--mobile-stage-pick .reporte-overlay__map-slot {
    flex: 1 1 82vh;
    min-height: 62vh;
    max-height: none;
  }

  /* Confirmación final: más aire para ID y acciones */
  .reporte-overlay__shell--stage-success .reporte-overlay__map-slot {
    flex: 0 0 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    overflow: hidden;
    display: none !important;
  }

  .reporte-overlay__shell--stage-success .reporte-overlay__panel {
    flex: 1 1 auto;
    max-height: 100%;
    border-radius: 0;
  }

  body.reporte-mobile-focus .reporte-overlay__shell--stage-success .reporte-banner--success {
    max-height: none;
    overflow: visible;
  }
}

/* Éxito: ocultar formulario y control de mapa; confirmación dentro del panel */
.reporte-overlay__shell--stage-success .reporte-form,
.reporte-overlay__shell--stage-success .reporte-overlay__map-toggle {
  display: none !important;
}

.reporte-success-panel__id-block {
  margin: var(--space-3) 0;
  padding: var(--space-3);
  background: #fff;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
}

.reporte-success-panel__id-label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #047857;
}

.reporte-success-panel__id-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.reporte-success-panel__id-value {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #065f46;
  word-break: break-all;
}

.reporte-success-panel__copy {
  font-size: 0.8125rem;
  padding: 0.35rem 0.65rem;
  min-width: auto;
}

.reporte-success-panel__copy--done {
  color: #047857;
  font-weight: 700;
}

.reporte-success-panel__filter-note {
  margin: var(--space-3) 0 0;
  padding: var(--space-2) var(--space-3);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.reporte-success-panel__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid #a7f3d0;
}

.reporte-success-panel__actions .btn {
  width: 100%;
  justify-content: center;
}

.reporte-success-panel__link-action {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.reporte-success-panel__link-action:hover {
  color: var(--color-text);
}

@media (min-width: 640px) {
  .reporte-success-panel__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .reporte-success-panel__actions .btn {
    width: auto;
    flex: 1 1 calc(50% - var(--space-1));
    min-width: 9rem;
  }

  .reporte-success-panel__link-action {
    flex: 1 0 100%;
    order: 3;
    margin-top: var(--space-1);
  }

  /* En escritorio el mapa puede seguir visible detrás del panel */
  .reporte-overlay__shell--stage-success .reporte-overlay__map-slot {
    display: block !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Anti-spam: honeypot oculto (no debe completarse) */
.reporte-modal__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.reporte-banner--duplicate {
  margin: 0 var(--space-3) var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid #fcd34d;
  background: #fffbeb;
  color: #78350f;
}

.reporte-duplicate-panel__lead {
  margin: 0 0 var(--space-2);
  font-size: 0.875rem;
  line-height: 1.45;
}

.reporte-duplicate-panel__list {
  margin: 0 0 var(--space-3);
  padding-left: 1.2rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.reporte-duplicate-panel__list a {
  color: var(--color-brand);
  font-weight: 600;
}

.reporte-duplicate-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-end;
}
