#mapSection{
    height: 70vh;
    margin-bottom: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#map {
    height: 50vh;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 5px #fff;
}
@media (max-width: 768px) {
    #map{
        height: 30vh;
        margin-top: 0vh;
    }
    #mapSection{
        margin-top: 10vh;
    }
}
#sidebar {
    width: max-content;
    height: auto;
    float: left;
    overflow-y: auto;
    padding: 10px;
}
strong{
    font-family: 'Passion One';
    font-size: larger;
}
        /* Stilizare text */
        .leaflet-popup-content-wrapper {
            color: #ffffff; /* Culoarea textului */
        }

        .leaflet-popup-content {
            font-size: 14px; /* Marimea textului */
        }
.restaurant {
    border: 2px solid #E83A30;
    color: #fff;
    background: #E83A30;
    background-size: cover;
    background-position: center center;
    margin-bottom: 15px;
    border-radius: 15px;
    padding: 10px 15px; 
    font-size: larger;
    transition: 0.2s all ease-in-out;
    font-family: 'Montserrat';        
    cursor: pointer;
}
.restaurant:hover {
    font-weight: bold;
    color: #fff;
}