/* styles.css */

body {
    margin: 0;
}

.map-container {
    float: right;
    text-align: right;
    margin:auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.33%;
}

.map-container .map {
    color: blue;
}

.map-container img {
   
    max-height: 160px;
    max-width: auto;
}

@media (max-width: 767px) {
    .map-container {
        float: none;
        margin-right: auto;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}





