html,
body {
    margin: 0;
    padding: 0;
}

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

.personalizar {
    width: 190px;               /* un poquito más ancha */
    min-height: 80px;           /* altura mínima como antes */
    height: auto;               /* 👈 clave: que crezca según contenido */
    background-color: white;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 6px -3px rgba(0,0,0,1);
    -moz-box-shadow: 0px 2px 6px -3px rgba(0,0,0,1);
    box-shadow: 0px 2px 6px -3px rgba(0,0,0,1);
    padding: 7px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.iconpersonal {
    background-color: orange;
    border-radius: 5px;
    width: 60px;
    height: 65px;
    text-align: center;
}

.poner-columnas {
    display: flex;
    flex-direction: column;
}

.info-box-text {
    margin-left: 10px;
    margin-top: 4px;         /* si quieres, bájale de 10 a 4 para que quepa mejor */
    font-size: 12px;
}

.info-box-number {
    margin-left: 10px;
    margin-top: 4px;         /* igual que arriba */
    font-size: 12px;
    font-weight: bold;
}

.iconop {
    margin-top: 15px;
    color: white;
    font-size: 30px;
}
