html, body, .full, #map{
    margin: 0;
    padding:0;
    height: 100%;
    overflow-x: hidden;
}

.leaflet-container {
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

#tooltip-container {
    display: flex;
    flex-direction: row;
    max-width: max-content; /* Set the maximum width of the container */
}

#tooltip-text {
    flex-grow: 1;
    font-size: large;
}

.hide {
    display: none;
}

td, tr {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

td:hover, tr:hover {
    background-color: lightskyblue;
    opacity: 1;
}

#poi {
    background-color: white;
    opacity: 1;
}

.firma {
    color: red;
}

.scrolling-div {
    overflow: auto;
}