/* Map Container Styles */
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 246, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.map-wrapper iframe {
    border: none;
    width: 100%;
    height: 100%;
    display: block;
}