/**
 * Indicador de carga de POIs (carga por viewport)
 */
.globalroute-pois-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.globalroute-pois-loading.globalroute-pois-loading-visible {
    opacity: 1;
    pointer-events: auto;
}
.globalroute-pois-loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: #1a73e8;
    border-radius: 50%;
    animation: globalroute-pois-loading-spin 0.8s linear infinite;
    margin-bottom: 10px;
}
.globalroute-pois-loading-text {
    font-size: 14px;
    color: #5f6368;
}
@keyframes globalroute-pois-loading-spin {
    to { transform: rotate(360deg); }
}
