#globe-container {
    width: 100%;
    height: 80vh;
    position: relative;
    background: #000;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 8px;
}

#globe-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 10;
    max-width: 300px;
}

#globe-legend div {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.legend-color {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border-radius: 50%;
}

.legend-color.inbound {
    background: #6ee7ff;
}

.legend-color.outbound {
    background: #ffd166;
}

#globe-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    max-width: 350px;
    z-index: 10;
}

#globe-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 4px;
    pointer-events: none;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
}

/* Responsive */
@media (max-width: 768px) {
    #globe-container {
        height: 60vh;
    }
    
    #globe-legend {
        top: 10px;
        right: 10px;
        padding: 10px;
        font-size: 12px;
        max-width: 200px;
    }
    
    .legend-color {
        width: 12px;
        height: 12px;
    }
    
    #globe-caption {
        bottom: 10px;
        left: 10px;
        padding: 10px;
        font-size: 12px;
        max-width: 250px;
    }
}