.megoverse-map-wrapper {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}

#megoverse-map-canvas {
    background-color: #eee;
}

/* Info Window / Popup */
.megoverse-infowindow,
.megoverse-popup {
    font-size: 14px;
    max-width: 250px;
}

.megoverse-infowindow h3,
.megoverse-popup h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: bold;
}

.megoverse-infowindow a,
.megoverse-popup a {
    display: inline-block;
    margin-top: 5px;
    color: #0073aa;
    text-decoration: none;
}

.megoverse-infowindow a:hover,
.megoverse-popup a:hover {
    text-decoration: underline;
}

/* Global Content Section */
.megoverse-map-global-content {
    padding: 15px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.megoverse-global-links,
.megoverse-global-text {
    flex: 1 1 300px;
}

/* Global Links */
.megoverse-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.megoverse-links-list li a {
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.megoverse-links-list li a:hover {
    background: #0073aa;
    border-color: #0073aa;
    color: #fff;
}

/* Global Text */
.megoverse-text-item {
    margin-bottom: 15px;
}

.megoverse-text-item:last-child {
    margin-bottom: 0;
}

.megoverse-text-item h4 {
    margin: 0 0 5px;
    font-size: 15px;
    color: #444;
}

.megoverse-text-content {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}