.location-map-container {
    display: flex;
}

.left-column {
    width: 50%;
}

.right-column {
    width: 50%;
}

/* Default button styles */
.location-button {
    display: block;
    margin: 10px 0;
    padding: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: transparent;
    color: #000;
    text-align: left;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Active button styles */
.location-button.active {
    border: 2px solid #EAB308;
    background-color: rgba(234, 179, 8, 0.1);
    color: #EAB308;
    font-weight: bold;
}

/* ❌ REMOVE THIS PART — no icon needed */
/*
.location-button.active::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .location-button.active::before {
        width: 8px;
        height: 8px;
        margin-right: 6px;
    }
}
*/

/* Image styles */
.location-image {
    display: none;
    width: 100%;
    height: auto;
}

.location-image.active {
    display: block;
}
