/* Map marker styles */

#map-container {
    position: relative;
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
    width: 100%;
    height: 100%;
}

.map-marker {
    position: absolute;
    margin: 0;
    padding: 0;
}


.map-pin img,
.map-marker img{
    color: #031659;
    cursor: pointer;
    position: absolute;
    width: 18px;
}

.map-pin {
    color: red;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
}

.map-marker {
    color: #031659;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
}

.tooltip {
    display: none;
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px;
    font-size: 12px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1000;
}

.side-panel {
    position: absolute;
    bottom: 20px;
    width: 400px;
    display: flex;
    align-items: center;
    transition: right 0.4s ease;
    right: unset;
    left: -800px;
}

@media screen and (min-width: 1390px) {
    .side-panel {
        right: -800px;
        height: 100%;
        bottom: 0;
        left: unset;
        top: 0;

    }
}

.side-panel-content {
    position: relative;
    background-color: #fff;
    border-top: 2px solid blue;
    box-shadow: 4px 4px 10px 0px rgba(3, 22, 89, 0.20);
    padding: 2rem;
}

.side-panel-title {
    font-size: 24px;
    margin-bottom: 1rem;
}

.side-panel-button {
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.side-panel-button:hover {
    background-color: #005177;
}

.side-panel.open {
    right: unset; /* Slide in from right */
    left: 20px;
}

@media screen and (min-width: 1390px) {
    .side-panel.open {
        right: 50px; /* Slide in from right */
        left: unset;
    }
}

/* Close button styling */
.close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    top: unset;
    right: 20px;
    position: absolute;
}

.close:hover {
    color: #0073aa;
}
