.logo {
    width: 150px;
}

.leaflet-popup-content {
    width: 400px !important;
}

.leaflet-popup-content p {
    margin: 0;
}

.leaflet-popup-content img {
    width: 100%;
}

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


body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
}

/* Container styling */
.container {
    display: flex;
    flex-direction: column;
    height: 100%; /* Full height */
}


/* Navbar styling */
.navbar {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    flex-shrink: 0; /* Prevent the navbar from shrinking */
}

/* Flexbox for the columns */
.columns {
    display: flex;
    flex: 1; /* Takes remaining space below the navbar */
}

/* Left column (25%) */
.column-left {
    flex: 0 0 25%;
    background-color: #f4f4f4;
    padding: 20px;
    box-sizing: border-box;
}

/* Right column (75%) */
.column-right {
    flex: 0 0 75%;
    background-color: #e8e8e8;
    padding: 20px;
    box-sizing: border-box;
}

.padding-container {
    padding: 20px;
}

li {
    margin-bottom: 10px;
    line-height: 1.3;
    list-style: none;
}

#markerList {
    max-height: 500px;
    overflow: scroll;
    border: 1px solid black;
    padding: 10px;
}
