/* Pantalla completa sin bordes */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#map { 
    height: 100vh; 
    width: 100%;
}

/* Ajustes del Popup para celulares */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.leaflet-popup-content {
    width: 260px !important; /* Tamaño ideal para cualquier móvil */
    margin: 15px;
    line-height: 1.4;
    font-size: 13.5px;
}

/* El botón de WhatsApp como protagonista */
.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
    padding: 12px;
    text-decoration: none;
    border-radius: 8px;
    display: block;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-whatsapp:active {
    background-color: #128C7E;
    transform: scale(0.98);
}
