/* mapa.css — Toast y utilidades generales.
   (Los pines del mapa están en marcadores.css, clase .pin3; la antigua
   variante .mk ya no la genera ningún módulo y se retiró.) */
    .toast {
      position: absolute; bottom: 84px; left: 50%; transform: translateX(-50%); z-index: 60;
      background: rgba(18,22,30,.95); color: #fff; padding: 10px 16px; border-radius: 10px;
      font-size: 13px; box-shadow: 0 4px 18px rgba(0,0,0,.4); opacity: 0; transition: opacity .3s; pointer-events: none; max-width: 80%; text-align: center;
    }
    .toast.show { opacity: 1; }

    .form-actions { display: flex; gap: 8px; margin-top: 14px; }
    textarea { resize: vertical; min-height: 64px; font-family: inherit; }
    .muted { color: var(--mut); font-size: 12px; }
    a { color: var(--azul); }
