.goodwin-map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.goodwin-map-container object {
    width: 100%;
    height: auto;
    pointer-events: auto;
}

#goodwin-location-map {
    position: relative;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

#world-map-container {
    width: 100%;
    height: 100%;
}

#world-map-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Modal styles */
.goodwin-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.goodwin-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    margin: 20px;
    width: 90%;
}

.goodwin-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.goodwin-close:hover {
    color: #333;
}

/* Location styles */
.location-group {
    margin-bottom: 20px;
}

.location-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 10px;
}

.location-item h5 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
}

.location-item p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.location-item a {
    color: #4a90e2;
    text-decoration: none;
}

.location-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .goodwin-modal-content {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
}