.iwm-map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}

.iwm-map {
    width: 100%;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.iwm-map svg {
    width: 100%;
    height: 100%;
}

.iwm-country {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.iwm-country:hover {
    opacity: 0.8;
}

.iwm-pin {
    cursor: pointer;
}

.iwm-popup {
    position: absolute;
    background: white;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.iwm-popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .iwm-map {
        height: 400px;
    }
}