
#map-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 500px !important; /* ← REAL HEIGHT */
}

#map {
    width: 100% !important;
    height: 100% !important; /* ← now valid because wrapper has height */
    position: relative !important;
}
.map-wrapper {
    display: flex;
    width: 100%;
    min-height: 500px;
}

.map-canvas {
    flex: 2;
    height: 500px;   /* Elementor will NOT strip this */
    position: relative;
    overflow: hidden;
}

.map-info-panel {
    flex: 1;
    padding: 10px;
    border-left: 1px solid #ddd;
    overflow-y: auto;
    background: #fff;
}

/* Optional: Info window styling */
.info-window {
    font-family: "Roboto", sans-serif;
    max-width: 250px;
}

.info-window img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}

.info-window a {
    font-size: 18px;
    font-weight: bold;
    color: #1a73e8;
    text-decoration: none;
}

.info-window a:hover {
    text-decoration: underline;
}

.info-window p {
    font-size: 14px;
    color: #444;
    margin-top: 4px;
}
