/* Navigation Widget - Minimal circular navigation for multi-site */

.nav-widget-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 99999;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.nav-circle {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.nav-circle:hover {
    opacity: 1;
    transform: scale(1.2);
}

.nav-circle.active {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-widget-container {
        top: 12px;
        right: 12px;
        padding: 6px 10px;
        gap: 6px;
    }

    .nav-circle {
        width: 14px;
        height: 14px;
    }
}