.ic-map-frontend-map-wrapper {
    width: 100%;
    margin: 20px auto;
}

.ic-map-world-map-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #E8F4F8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ic-map-world-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.country {
    fill: #D1D5DB;
    stroke: #FFFFFF;
    stroke-width: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.country.highlighted {
    stroke: #1e40af;
    stroke-width: 1.5;
}

.country.highlighted:hover {
    opacity: 0.85;
    stroke-width: 2;
}

.ic-map-frontend-tooltip {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    padding: 16px;
    max-width: 300px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.ic-map-frontend-tooltip.active {
    opacity: 1;
}

.ic-map-frontend-tooltip-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

.ic-map-frontend-tooltip-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.ic-map-frontend-tooltip-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .ic-map-frontend-tooltip {
        max-width: 250px;
        padding: 12px;
    }
    
    .ic-map-frontend-tooltip-image {
        height: 120px;
    }
    
    .ic-map-frontend-tooltip-title {
        font-size: 16px;
    }
    
    .ic-map-frontend-tooltip-description {
        font-size: 13px;
    }
}