/* =============================================
   MIIP · Dark Compact — sin scroll
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg-main:       #0a0a0f;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.08);
  --border-glow:   rgba(0,229,255,0.3);

  --cyan:   #00e5ff;
  --purple: #7c3aed;
  --green:  #10b981;
  --red:    #ef4444;

  --t1: #f0f4ff;
  --t2: #8892a4;
  --t3: #4a5568;

  --grad-cyan:   linear-gradient(135deg,#00e5ff,#0070ff);
  --grad-card:   linear-gradient(135deg,rgba(0,229,255,.05),rgba(124,58,237,.05));

  --sh-card: 0 4px 24px rgba(0,0,0,.45);
  --r-lg: 16px;
  --r-md: 10px;
  --r-sm: 7px;

  --ease: 0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

/* ── Scroll natural permitido, sin restricciones ── */
html, body {
  min-height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--t1);
  line-height: 1.4;
}

/* ── Partículas ── */
#particles-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}

/* =============================================
   SHELL PRINCIPAL — column layout fijo 100dvh
   ============================================= */
.shell {
  position: relative; z-index: 1;
  /* Sin altura fija — el contenido define el alto */
  display: flex;
  flex-direction: column;
  padding: 40px 16px 24px;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   TOPBAR (antes: hero enorme)
   ============================================= */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 0 4px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-brand .brand-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg,rgba(0,229,255,.15),rgba(124,58,237,.15));
  border: 1px solid rgba(0,229,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1rem;
}

.topbar-brand h1 {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg,#fff 40%,var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.topbar-brand p {
  font-size: 0.7rem;
  color: var(--t3);
  font-weight: 400;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Badge live */
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,229,255,.07);
  border: 1px solid rgba(0,229,255,.18);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--cyan); letter-spacing: .8px; text-transform: uppercase;
}
.live-badge .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease infinite;
}

/* Timestamp compacto */
.topbar-time {
  font-size: 0.72rem;
  color: var(--t3);
  display: flex; align-items: center; gap: 5px;
}
.topbar-time i { color: var(--purple); }

/* =============================================
   GRID CENTRAL — crece para llenar espacio
   ============================================= */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  /* El mapa tiene altura fija, el contenido se adapta */
  align-items: start;
  gap: 12px;
}

.left-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =============================================
   TARJETA UNIFICADA DE IPs (IPv4 + IPv6 juntas)
   ============================================= */
.ip-unified-card {
  background: var(--grad-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  box-shadow: var(--sh-card), 0 0 20px rgba(0,229,255,.06);
  position: relative;
  flex-shrink: 0;         /* no se estira */
  animation: fadeUp .5s ease both;
}

/* borde gradiente animado */
.ip-unified-card::before {
  content:'';
  position: absolute; inset: -1px;
  border-radius: calc(var(--r-lg) + 1px);
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--cyan));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: gradShift 4s ease infinite;
  z-index: 0;
}

/* ip-row: fila individual para v4 o v6 */
.ip-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  position: relative; z-index: 1;
}

.ip-row + .ip-row {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
  padding-top: 12px;
}

.ip-row-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.ip-row-icon.v4 { background: rgba(0,229,255,.12); color: var(--cyan); }
.ip-row-icon.v6 { background: rgba(124,58,237,.12); color: #b78bfa; }

.ip-row-body { min-width: 0; }

.ip-row-label {
  font-size: 0.65rem; font-weight: 600;
  color: var(--t3); text-transform: uppercase;
  letter-spacing: .7px; margin-bottom: 2px;
}

.ip-address {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(.75rem, 1.5vw, 1rem);
  font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ip-address.v4 { color: var(--cyan); }
.ip-address.v6 { color: #b78bfa; }
.ip-address.na { color: var(--t3); font-weight: 400; font-size: .8rem; }

.ip-row-actions {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}

/* Badge de estado */
.status-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 100px;
  font-size: 0.65rem; font-weight: 600;
}
.s-on  { background: rgba(16,185,129,.12); color: var(--green); border: 1px solid rgba(16,185,129,.25); }
.s-off { background: rgba(239,68,68,.1);   color: var(--red);   border: 1px solid rgba(239,68,68,.2); }
.status-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.s-on .status-dot { animation: pulse 2s ease infinite; }

/* Botón copiar compacto */
.copy-btn {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--t2);
  padding: 5px 9px;
  cursor: pointer;
  font-size: 0.72rem; font-family: inherit; font-weight: 500;
  display: flex; align-items: center; gap: 4px;
  transition: all var(--ease); white-space: nowrap;
}
.copy-btn:hover {
  background: rgba(0,229,255,.1);
  border-color: rgba(0,229,255,.3);
  color: var(--cyan);
  transform: scale(1.05);
}
.copy-btn.copied {
  background: rgba(16,185,129,.15);
  border-color: rgba(16,185,129,.4);
  color: var(--green);
}

/* =============================================
   TARJETA DE DETALLES — ocupa el espacio restante
   ============================================= */
.details-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  box-shadow: var(--sh-card);
  animation: fadeUp .5s ease .1s both;
  flex-shrink: 0;         /* NO estira, ocupa solo lo necesario */
}

.details-card:hover {
  border-color: rgba(0,229,255,.15);
}

.card-title {
  font-size: 0.65rem; font-weight: 700;
  color: var(--t3); text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 10px; flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
}
.card-title i { color: var(--cyan); }

/* Grid de info — 4 columnas en escritorio */
/* Lista vertical: cada fila = icono+label a la izquierda, valor a la derecha */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  min-width: 0;
  transition: background var(--ease);
}
.info-row:last-child { border-bottom: none; }
.info-row:hover { background: rgba(255,255,255,.02); border-radius: 6px; }

.info-row-icon {
  width: 22px; flex-shrink: 0;
  text-align: center;
  color: var(--cyan);
  font-size: .72rem;
}

.info-row-label {
  flex: 0 0 110px;        /* ancho fijo para alinear todos los valores */
  font-size: .68rem;
  font-weight: 600;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
}

.info-row-value {
  flex: 1;
  font-size: .82rem;
  font-weight: 600;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}
.info-row-value img { vertical-align: middle; margin-right: 4px; border-radius: 2px; }
.info-item:hover {
  background: rgba(255,255,255,.03);
  border-color: rgba(0,229,255,.15);
}

.info-label {
  font-size: 0.6rem; font-weight: 600;
  color: var(--t3); text-transform: uppercase;
  letter-spacing: .6px; margin-bottom: 4px;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.info-label i { color: var(--cyan); font-size: .6rem; flex-shrink: 0; }

.info-value {
  font-size: 0.78rem; font-weight: 600;
  color: var(--t1);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.info-value img { vertical-align: middle; margin-right: 4px; border-radius: 2px; }

/* =============================================
   BARRA DE ACCIONES
   ============================================= */
.actions-bar {
  display: flex; gap: 8px;
  flex-shrink: 0;          /* no crecer */
  align-items: center;     /* centrar botones verticalmente */
  height: 42px;            /* altura fija para la barra */
  animation: fadeUp .5s ease .15s both;
}

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border: none; border-radius: var(--r-md);
  font-family: inherit; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--ease);
}
.btn:active { transform: scale(.96); }

.btn-primary {
  background: var(--grad-cyan); color: #000;
  flex: 1; max-height: 42px;          /* evita que crezca verticalmente */
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,229,255,.25);
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(0,229,255,.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border); color: var(--t1);
  flex: 1; max-height: 42px;          /* mismo límite */
  justify-content: center;
}
.btn-secondary:hover {
  background: rgba(124,58,237,.1);
  border-color: rgba(124,58,237,.4); color: #b78bfa;
  transform: translateY(-1px);
}

.icon-spin { display: inline-block; }
.btn:hover .icon-spin { animation: spin .5s ease; }

/* =============================================
   MAPA — altura completa de la columna derecha
   ============================================= */
.map-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-card);
  position: relative;
  animation: fadeUp .5s ease .2s both;
  /* Altura fija cómoda — no necesita llenar todo */
  height: 460px;
}

.map-header {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 500;
  background: linear-gradient(180deg,rgba(10,10,15,.9) 0%,transparent 100%);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--t2); pointer-events: none;
}
.map-header i { color: var(--cyan); }

/* Botón de pantalla completa */
.map-fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 500;
  width: 32px;
  height: 32px;
  background: rgba(10,10,20,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  color: var(--t2);
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.map-fullscreen-btn:hover {
  background: rgba(0,229,255,0.15);
  border-color: rgba(0,229,255,0.35);
  color: var(--cyan);
}

/* Cuando el mapa está en pantalla completa */
.map-card:fullscreen,
.map-card:-webkit-full-screen {
  border-radius: 0;
  height: 100vh;
  width: 100vw;
}

.map-card:fullscreen #map,
.map-card:-webkit-full-screen #map {
  height: 100%;
  width: 100%;
}

#map { height: 100%; width: 100%; }

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed; bottom: 20px; right: 20px;
  background: rgba(10,10,20,.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 11px 18px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500;
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
  transform: translateY(60px); opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
  z-index: 9999; color: var(--t1); pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success .toast-icon { color: var(--green); }
.toast.error   .toast-icon { color: var(--red); }
.toast.info    .toast-icon { color: var(--cyan); }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  z-index: 1000; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }

.modal {
  background: #111118;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 26px; max-width: 460px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  animation: modalIn .32s cubic-bezier(.34,1.56,.64,1) both;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.modal-title  { font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.modal-title i { color: var(--cyan); }
.modal-close {
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: var(--t2); width: 30px; height: 30px; border-radius: 7px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--ease); font-size: .9rem;
}
.modal-close:hover { background: rgba(239,68,68,.15); color: var(--red); border-color: rgba(239,68,68,.3); }

.share-options { display: grid; gap: 8px; }
.share-btn {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--r-md); cursor: pointer; transition: all var(--ease);
  color: var(--t1); font-family: inherit; text-align: left;
}
.share-btn:hover { background: rgba(0,229,255,.06); border-color: rgba(0,229,255,.2); transform: translateX(3px); }
.share-btn-icon { font-size: 1.1rem; width: 24px; text-align: center; }
.share-btn strong { display: block; font-size: 0.85rem; }
.share-btn small  { color: var(--t3); font-size: 0.73rem; }

.share-preview { margin-top: 16px; }
.share-preview label {
  display: block; font-size: 0.7rem; font-weight: 600; color: var(--t3);
  text-transform: uppercase; letter-spacing: .7px; margin-bottom: 8px;
}
.share-textarea {
  width: 100%; background: rgba(0,0,0,.4); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--t1);
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  padding: 10px; resize: none; height: 90px; line-height: 1.5;
}
.share-textarea:focus { outline: none; border-color: rgba(0,229,255,.3); }

/* =============================================
   HISTORIAL DE IPs
   ============================================= */
.history-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  animation: fadeUp .5s ease .2s both;
  flex-shrink: 0;
}

/* Cabecera clicable */
.history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  cursor: pointer;
  user-select: none;
  transition: background var(--ease);
}
.history-header:hover { background: rgba(255,255,255,.03); }

.history-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.history-title i { color: var(--cyan); }

.history-title-count {
  color: var(--cyan);
  font-weight: 700;
}

.history-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.history-toggle-icon {
  color: var(--t3);
  font-size: 0.75rem;
  transition: transform var(--ease);
}

.history-clear-btn {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 6px;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 600;
  padding: 3px 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--ease);
  display: flex; align-items: center; gap: 4px;
}
.history-clear-btn:hover {
  background: rgba(239,68,68,.18);
  border-color: rgba(239,68,68,.5);
}

/* Cuerpo del historial */
.history-body {
  border-top: 1px solid var(--border);
  max-height: 220px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Scrollbar sutil */
.history-body::-webkit-scrollbar { width: 4px; }
.history-body::-webkit-scrollbar-track { background: transparent; }
.history-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }

/* Estado vacío */
.history-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px;
  color: var(--t3);
  font-size: 0.75rem;
}
.history-empty i { font-size: 1.4rem; opacity: .4; }

/* Fila de historial */
.hist-row {
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background var(--ease);
  cursor: default;
}
.hist-row:last-child { border-bottom: none; }
.hist-row:hover { background: rgba(255,255,255,.03); }

/* Sesión actual resaltada */
.hist-row--current {
  background: rgba(0,229,255,.04);
  border-left: 2px solid var(--cyan);
  padding-left: 12px;
}
.hist-row--current:hover { background: rgba(0,229,255,.07); }

.hist-row-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.hist-ip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
}
.hist-ip.v4 { color: var(--cyan); }
.hist-ip.v6 { color: #b78bfa; font-size: 0.68rem; }

.hist-row-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hist-flag { border-radius: 2px; vertical-align: middle; }

.hist-detail {
  font-size: 0.68rem;
  color: var(--t2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.hist-date {
  font-size: 0.62rem;
  color: var(--t3);
  margin-left: auto;
  white-space: nowrap;
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes fadeUp   { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
@keyframes pulse    { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }
@keyframes spin     { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes gradShift{ 0%{background-position:0 50%} 50%{background-position:100% 50%} 100%{background-position:0 50%} }
@keyframes modalIn  { from{opacity:0;transform:scale(.88) translateY(16px)} to{opacity:1;transform:none} }

@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms!important; transition-duration:.01ms!important; }
}

/* =============================================
   RESPONSIVE — tablet / móvil ≤ 820px
   ============================================= */
@media (max-width: 820px) {

  .shell { padding: 8px 12px 16px; gap: 8px; }

  /* Columna única — flujo natural */
  .main-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Mapa al final con altura fija cómoda */
  .map-card {
    height: 240px;
    flex-shrink: 0;
  }

  .ip-unified-card { padding: 10px 12px; }
  .details-card    { padding: 8px 12px; }
  .info-row-label  { flex: 0 0 90px; }
  .actions-bar     { height: 38px; }
}

/* =============================================
   MÓVIL ≤ 540px
   ============================================= */
@media (max-width: 540px) {

  .shell { padding: 6px 10px 14px; gap: 6px; }

  /* Topbar */
  .topbar-brand p  { display: none; }
  .topbar-brand h1 { font-size: 0.95rem; }
  .brand-icon      { width: 28px; height: 28px; font-size: 0.78rem; }
  .live-badge      { padding: 3px 8px; font-size: 0.6rem; }
  .topbar-time     { font-size: 0.62rem; }

  /* IPs */
  .ip-address   { font-size: 0.8rem; }
  .ip-row-label { font-size: 0.58rem; }
  .ip-icon      { width: 22px; height: 22px; font-size: 0.68rem; }
  .copy-btn     { padding: 3px 7px; font-size: 0.65rem; }

  /* Detalles */
  .info-row-label { flex: 0 0 78px; font-size: 0.6rem; }
  .info-row-value { font-size: 0.74rem; }
  .info-row       { padding: 5px 0; }
  .card-title     { font-size: 0.58rem; margin-bottom: 5px; }

  /* Botones */
  .btn { padding: 7px 12px; font-size: 0.78rem; }

  /* Mapa un poco más pequeño en móvil */
  .map-card { height: 200px; }

  .toast { right: 10px; bottom: 10px; left: 10px; }
}

/* =============================================
   LEAFLET DARK
   ============================================= */
.leaflet-container { background: #0d0d14!important; }
.leaflet-tile { filter: brightness(.7) saturate(.6) hue-rotate(180deg) invert(1); }
.leaflet-popup-content-wrapper {
  background: #111118; color: var(--t1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.leaflet-popup-tip { background: #111118; }
