/* style.css */
.ng-map-wrapper-8fdb48bc {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 60%; /* 10:6 aspect ratio */
}

.ng-map-globe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ng-globe-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ng-pointers-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let clicks pass through empty areas */
}

.ng-pointer {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto; /* Re-enable for the pointer itself */
    z-index: 10;
}

.ng-pointer-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    cursor: pointer;
    z-index: 2;
}

.ng-pointer-icon {
    color: #f26d3e;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ng-pointer-icon svg {
    width: 18px;
    height: 18px;
    fill: #f26d3e;
}

.ng-pointer-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #f26d3e;
    opacity: 0;
    z-index: 1;
    animation: ng-pulse-ring-8fdb48bc 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.ng-info-card {
    position: absolute;
    top: -10px;
    left: 50px;
    background: #fff;
    border: 1px solid #f26d3e;
    padding: 15px;
    border-radius: 4px;
    width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

/* Add an arrow to the tooltip */
.ng-info-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -6px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid #f26d3e;
    border-bottom: 1px solid #f26d3e;
    transform: rotate(45deg);
}

.ng-pointer:hover .ng-info-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ng-info-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.ng-info-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.ng-connection-line {
    animation: dash-animation-8fdb48bc 20s linear infinite;
}

@keyframes dash-animation-8fdb48bc {
    to {
        stroke-dashoffset: -100;
    }
}

@keyframes ng-pulse-ring-8fdb48bc {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}