@import '_content/Blazor.Flags/Blazor.Flags.bundle.scp.css';

/* /Components/Pages/AdminPanel/VPN/VpnMain.razor.rz.scp.css */
/* =========================
   Pulse Indicator (LED style)
   ========================= */

.pulse[b-sshp1zpl87] {
    --size: 12px;
    --color: #00e600;
    position: relative;
    display: inline-block;
    width: var(--size);
    height: var(--size);
    margin: 0 6px;
    border-radius: 50%;
    background-color: var(--color);
    flex: 0 0 auto;
}

    /* Outer pulse ring */
    .pulse[b-sshp1zpl87]::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background-color: var(--color);
        opacity: 0.6;
        transform: scale(1);
        animation: pulse-ring-b-sshp1zpl87 1.8s ease-out infinite;
    }

    /* Subtle inner glow */
    .pulse[b-sshp1zpl87]::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        box-shadow: 0 0 6px var(--color), 0 0 6px var(--color);
    }

/* Animation */
@keyframes pulse-ring-b-sshp1zpl87 {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(2);
        opacity: 0;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* =========================
   Color variants
   ========================= */

.pulse.green[b-sshp1zpl87] {
    --color: #22c55e; /* nicer modern green */
}

.pulse.orange[b-sshp1zpl87] {
    --color: #f59e0b;
}

.pulse.red[b-sshp1zpl87] {
    --color: #ef4444;
}

/* =========================
   Sizes (optional)
   ========================= */

.pulse.sm[b-sshp1zpl87] {
    --size: 8px;
}

.pulse.md[b-sshp1zpl87] {
    --size: 12px;
}

.pulse.lg[b-sshp1zpl87] {
    --size: 16px;
}
/* /Shared/LoadingContent.razor.rz.scp.css */
.loading-shell[b-pnq4fcvl2h] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-fullscreen[b-pnq4fcvl2h] {
    position: fixed;
    inset: 0;
    z-index: 1050;
}

.loading-inline[b-pnq4fcvl2h] {
    position: relative;
    width: 100%;
    min-height: 5rem;
}

.loading-backdrop[b-pnq4fcvl2h] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
}

.loading-card[b-pnq4fcvl2h] {
    position: relative;
    z-index: 1;
    background: var(--mud-palette-surface, #fafafa);
    padding: 1.25rem 1.5rem;
    border-radius: 0.6rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 220px;
    max-width: 420px;
}

.loading-message[b-pnq4fcvl2h] {
    color: var(--mud-palette-text-primary, #09090b);
    font-size: 0.95rem;
    text-align: center;
    opacity: 0.9;
}

@media (max-width: 480px) {
    .loading-card[b-pnq4fcvl2h] {
        padding: 1rem;
        min-width: 180px;
    }
}
