/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* MODERN LOGIN WITH THREE.JS GLASS EFFECTS */
html[b-a917b25d9i], body[b-a917b25d9i] {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
}

.login-container[b-a917b25d9i] {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* THREE.JS BACKGROUND */
.three-background[b-a917b25d9i] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(45deg, #1a1a2e, #0a0a1f);
}

/* LOGIN OVERLAY */
.login-overlay[b-a917b25d9i] {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.login-card[b-a917b25d9i] {
    background: rgba(20, 20, 40, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* BRAND SECTION */
.brand-section[b-a917b25d9i] {
    text-align: center;
    margin-bottom: 32px;
}

.brand-logo[b-a917b25d9i] {
    margin-bottom: 8px;
}

.logo-text[b-a917b25d9i] {
    font-size: 28px;
    font-weight: 700;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.logo-subtitle[b-a917b25d9i] {
    font-size: 14px;
    font-weight: 400;
    color: #6b46c1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 4px;
}

.brand-tagline[b-a917b25d9i] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

/* ERROR ALERT */
.error-alert[b-a917b25d9i] {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: errorShake-b-a917b25d9i 0.5s ease-in-out;
}

.error-icon[b-a917b25d9i] {
    font-size: 16px;
    animation: errorPulse-b-a917b25d9i 1s ease-in-out infinite;
}

.error-message[b-a917b25d9i] {
    color: #ff4444;
    font-size: 14px;
    font-weight: 500;
}

/* OVERRIDE BLAZOR DEFAULT STYLES */
.login-form .form-group > input[b-a917b25d9i],
.login-form .form-group > input.form-control[b-a917b25d9i],
.login-form .form-group .form-input[b-a917b25d9i],
input.form-input[b-a917b25d9i] {
    width: 100% !important;
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.login-form .form-group > input:focus[b-a917b25d9i],
.login-form .form-group > input.form-control:focus[b-a917b25d9i],
.login-form .form-group .form-input:focus[b-a917b25d9i],
input.form-input:focus[b-a917b25d9i] {
    border-color: #00ff88 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Target Blazor InputCheckbox */
.login-form .form-options input[type="checkbox"][b-a917b25d9i],
.login-form .checkbox-input[b-a917b25d9i],
input[type="checkbox"].form-input[b-a917b25d9i] {
    width: 16px !important;
    height: 16px !important;
    accent-color: #00ff88 !important;
    cursor: pointer !important;
}

/* Target Blazor ValidationMessage */
.login-form .form-group .validation-message[b-a917b25d9i],
.login-form .form-error[b-a917b25d9i],
.validation-message.form-error[b-a917b25d9i] {
    color: #ff4444 !important;
    font-size: 12px !important;
    margin-top: 4px !important;
    display: block !important;
}

/* LOGIN FORM */
.login-form[b-a917b25d9i] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group[b-a917b25d9i] {
    position: relative;
    margin-bottom: 24px;
}

/* Target Blazor InputText generated elements */
.form-group input[type="text"][b-a917b25d9i],
.form-group input[type="password"][b-a917b25d9i],
.form-group input[type="email"][b-a917b25d9i],
.form-group .form-input[b-a917b25d9i] {
    width: 100% !important;
    padding: 16px 20px 16px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.form-group input[type="text"]:focus[b-a917b25d9i],
.form-group input[type="password"]:focus[b-a917b25d9i],
.form-group input[type="email"]:focus[b-a917b25d9i],
.form-group .form-input:focus[b-a917b25d9i] {
    border-color: #00ff88 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.form-group input[b-a917b25d9i]::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.form-label[b-a917b25d9i] {
    position: absolute;
    top: -8px;
    left: 16px;
    background: rgba(20, 20, 40, 0.85);
    padding: 0 8px;
    color: #6b46c1;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 1;
}

.form-group input:focus + .form-label[b-a917b25d9i] {
    color: #00ff88 !important;
    opacity: 1 !important;
}

.form-error[b-a917b25d9i] {
    color: #ff4444 !important;
    font-size: 12px !important;
    margin-top: 4px !important;
    display: block !important;
}

/* FORM OPTIONS */
.form-options[b-a917b25d9i] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.checkbox-label[b-a917b25d9i] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.checkbox-label:hover[b-a917b25d9i] {
    color: #00ff88 !important;
}

.checkbox-input[b-a917b25d9i] {
    width: 16px !important;
    height: 16px !important;
    accent-color: #00ff88 !important;
    cursor: pointer;
}

.checkbox-text[b-a917b25d9i] {
    user-select: none;
}

/* SUBMIT BUTTON */
.submit-btn[b-a917b25d9i] {
    position: relative;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.submit-btn:hover[b-a917b25d9i] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.submit-btn:active[b-a917b25d9i] {
    transform: translateY(0);
}

.btn-text[b-a917b25d9i] {
    position: relative;
    z-index: 2;
}

.btn-glow[b-a917b25d9i] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover .btn-glow[b-a917b25d9i] {
    left: 100%;
}

/* VALIDATION SUMMARY */
.validation-summary[b-a917b25d9i] {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: #ff4444;
    font-size: 14px;
}

/* DIVIDER */
.divider[b-a917b25d9i] {
    position: relative;
    text-align: center;
    margin: 32px 0;
}

.divider[b-a917b25d9i]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.divider-text[b-a917b25d9i] {
    background: rgba(20, 20, 40, 0.85);
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ALTERNATIVE OPTIONS */
.alt-options[b-a917b25d9i] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.alt-btn[b-a917b25d9i] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(107, 70, 193, 0.1);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 8px;
    color: #b8467f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.alt-btn:hover[b-a917b25d9i] {
    background: rgba(107, 70, 193, 0.2);
    border-color: #00ff88;
    color: #00ff88;
    transform: translateY(-1px);
}

.alt-icon[b-a917b25d9i] {
    font-size: 16px;
}

.alt-text[b-a917b25d9i] {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alt-links[b-a917b25d9i] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.alt-link[b-a917b25d9i] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.alt-link:hover[b-a917b25d9i] {
    color: #00ff88;
}

/* ANIMATIONS */
@keyframes errorShake-b-a917b25d9i {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes errorPulse-b-a917b25d9i {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .login-card[b-a917b25d9i] {
        margin: 20px;
        padding: 32px 24px;
        max-width: calc(100% - 40px);
    }
    
    .logo-text[b-a917b25d9i] {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .logo-subtitle[b-a917b25d9i] {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .form-input[b-a917b25d9i] {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .submit-btn[b-a917b25d9i] {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .login-card[b-a917b25d9i] {
        margin: 16px;
        padding: 24px 20px;
    }
    
    .brand-section[b-a917b25d9i] {
        margin-bottom: 24px;
    }
    
    .login-form[b-a917b25d9i] {
        gap: 20px;
    }
    
    .logo-text[b-a917b25d9i] {
        font-size: 20px;
    }
    
    .form-input[b-a917b25d9i] {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .submit-btn[b-a917b25d9i] {
        padding: 12px;
        font-size: 14px;
    }
}
/* /Components/ErrorHandling/ErrorDisplay.razor.rz.scp.css */
.error-modal-overlay[b-7za9z6zzz2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-7za9z6zzz2 0.3s ease-out;
}

.error-modal[b-7za9z6zzz2] {
    width: 60%;
    height: 80%;
    max-width: 1200px;
    max-height: 800px;
    background: var(--vg-void-800);
    border: 1px solid var(--vg-glass-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: slideIn-b-7za9z6zzz2 0.3s ease-out;
}

.error-modal-header[b-7za9z6zzz2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--vg-void-900);
    border-bottom: 1px solid var(--vg-glass-border);
}

.error-title-section[b-7za9z6zzz2] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.error-icon[b-7za9z6zzz2] {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.error-icon-critical[b-7za9z6zzz2] {
    background: color-mix(in srgb, #ff4444 20%, transparent);
    border: 2px solid #ff4444;
    box-shadow: 0 0 15px color-mix(in srgb, #ff4444 40%, transparent);
}

.error-icon-error[b-7za9z6zzz2] {
    background: color-mix(in srgb, var(--vg-energy-500) 20%, transparent);
    border: 2px solid var(--vg-energy-500);
    box-shadow: 0 0 15px color-mix(in srgb, var(--vg-energy-500) 40%, transparent);
}

.error-icon-warning[b-7za9z6zzz2] {
    background: color-mix(in srgb, #ffaa00 20%, transparent);
    border: 2px solid #ffaa00;
    box-shadow: 0 0 15px color-mix(in srgb, #ffaa00 40%, transparent);
}

.error-icon-info[b-7za9z6zzz2] {
    background: color-mix(in srgb, #4488ff 20%, transparent);
    border: 2px solid #4488ff;
    box-shadow: 0 0 15px color-mix(in srgb, #4488ff 40%, transparent);
}

.error-title h3[b-7za9z6zzz2] {
    margin: 0;
    color: var(--vg-text-primary);
    font-size: 20px;
    font-weight: 600;
}

.error-timestamp[b-7za9z6zzz2] {
    margin: 4px 0 0 0;
    color: var(--vg-text-muted);
    font-size: 12px;
}

.error-actions[b-7za9z6zzz2] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.error-modal-content[b-7za9z6zzz2] {
    flex: 1;
    padding: 24px;
    height: 100%; /* or a fixed max-height */
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.error-message-section[b-7za9z6zzz2] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.friendly-message h4[b-7za9z6zzz2] {
    margin: 0 0 8px 0;
    color: var(--vg-text-primary);
    font-size: 16px;
}

.friendly-message p[b-7za9z6zzz2] {
    margin: 0;
    color: var(--vg-text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.technical-message h5[b-7za9z6zzz2] {
    margin: 0 0 8px 0;
    color: var(--vg-text-primary);
    font-size: 14px;
}

.tech-detail[b-7za9z6zzz2] {
    background: var(--vg-void-900);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--vg-glass-border);
    color: var(--vg-text-secondary);
    font-family: 'Courier New', monospace;
    font-size: 13px;
    margin: 0;
    word-break: break-word;
}

.error-tabs[b-7za9z6zzz2] {
    border: 1px solid var(--vg-glass-border);
    border-radius: 8px;
    overflow: hidden;
}

.tab-headers[b-7za9z6zzz2] {
    display: flex;
    background: var(--vg-void-900);
    border-bottom: 1px solid var(--vg-glass-border);
}

.tab-btn[b-7za9z6zzz2] {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--vg-text-secondary);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover[b-7za9z6zzz2] {
    color: var(--vg-text-primary);
    background: var(--vg-glass-bg);
}

.tab-btn.active[b-7za9z6zzz2] {
    color: var(--vg-energy-500);
    border-bottom-color: var(--vg-energy-500);
    background: color-mix(in srgb, var(--vg-energy-500) 10%, transparent);
}

.tab-content[b-7za9z6zzz2] {
    padding: 20px;
    min-height: 200px;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.stacktrace-content[b-7za9z6zzz2] {
    font-family: 'Courier New', monospace;
    flex: 1;
    display: flex;       /* Add this */
    flex-direction: column; /* Add this */
    min-height: 0;       /* Key fix: allows the container to shrink to fit the parent */
    overflow: hidden;
}

.stack-frames[b-7za9z6zzz2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow-y: auto;    /* This will now trigger because the parent has a constrained height */
    padding-right: 8px;
}

.stack-frame[b-7za9z6zzz2] {
    background: var(--vg-void-900);
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid var(--vg-energy-500);
}

.stack-frames[b-7za9z6zzz2]::-webkit-scrollbar {
    width: 6px;
}

.stack-frames[b-7za9z6zzz2]::-webkit-scrollbar-track {
    background: var(--vg-void-900);
    border-radius: 3px;
}

.stack-frames[b-7za9z6zzz2]::-webkit-scrollbar-thumb {
    background: var(--vg-glass-border);
    border-radius: 3px;
}

.stack-frames[b-7za9z6zzz2]::-webkit-scrollbar-thumb:hover {
    background: var(--vg-glass-highlight);
}

.frame-method[b-7za9z6zzz2] {
    color: var(--vg-text-primary);
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 4px;
}

.frame-location[b-7za9z6zzz2] {
    color: var(--vg-text-muted);
    font-size: 12px;
}

.frame-file[b-7za9z6zzz2] {
    color: var(--vg-energy-400);
}

.frame-line[b-7za9z6zzz2] {
    color: var(--vg-text-muted);
}

.details-content[b-7za9z6zzz2] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row[b-7za9z6zzz2] {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--vg-glass-border);
}

.detail-label[b-7za9z6zzz2] {
    color: var(--vg-text-muted);
    font-weight: 500;
}

.detail-value[b-7za9z6zzz2] {
    color: var(--vg-text-secondary);
    text-align: right;
}

.severity-critical[b-7za9z6zzz2] { color: #ff4444; }
.severity-error[b-7za9z6zzz2] { color: var(--vg-energy-500); }
.severity-warning[b-7za9z6zzz2] { color: #ffaa00; }
.severity-info[b-7za9z6zzz2] { color: #4488ff; }

.inner-exceptions-content[b-7za9z6zzz2] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inner-exception[b-7za9z6zzz2] {
    background: var(--vg-void-900);
    padding: 16px;
    border-radius: 6px;
    border: 1px solid var(--vg-glass-border);
}

.inner-exception h6[b-7za9z6zzz2] {
    margin: 0 0 8px 0;
    color: var(--vg-text-primary);
    font-size: 14px;
}

.inner-exception p[b-7za9z6zzz2] {
    margin: 0 0 12px 0;
    color: var(--vg-text-secondary);
    font-size: 13px;
}

.inner-stacktrace[b-7za9z6zzz2] {
    background: var(--vg-void-1000);
    padding: 12px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--vg-text-muted);
    overflow-x: auto;
    margin: 0;
    white-space: pre-wrap;
}

.multiple-errors-section[b-7za9z6zzz2] {
    border-top: 1px solid var(--vg-glass-border);
    padding-top: 20px;
}

.multiple-errors-section h4[b-7za9z6zzz2] {
    margin: 0 0 12px 0;
    color: var(--vg-text-primary);
    font-size: 14px;
}

.error-list[b-7za9z6zzz2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.error-item[b-7za9z6zzz2] {
    background: var(--vg-void-900);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--vg-glass-border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.error-item:hover[b-7za9z6zzz2] {
    border-color: var(--vg-energy-500);
    background: color-mix(in srgb, var(--vg-energy-500) 10%, transparent);
}

.error-item-header[b-7za9z6zzz2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.error-item-type[b-7za9z6zzz2] {
    color: var(--vg-energy-400);
    font-weight: 500;
    font-size: 12px;
}

.error-item-time[b-7za9z6zzz2] {
    color: var(--vg-text-muted);
    font-size: 11px;
}

.error-item-message[b-7za9z6zzz2] {
    margin: 0;
    color: var(--vg-text-secondary);
    font-size: 13px;
    line-height: 1.4;
}

.error-modal-footer[b-7za9z6zzz2] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    background: var(--vg-void-900);
    border-top: 1px solid var(--vg-glass-border);
}

.vg-btn[b-7za9z6zzz2] {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vg-btn-primary[b-7za9z6zzz2] {
    background: var(--vg-energy-500);
    color: var(--vg-void-1000);
    border: 1px solid var(--vg-energy-500);
}

.vg-btn-primary:hover[b-7za9z6zzz2] {
    background: var(--vg-energy-400);
    box-shadow: 0 0 10px color-mix(in srgb, var(--vg-energy-500) 40%, transparent);
}

.vg-btn-secondary[b-7za9z6zzz2] {
    background: var(--vg-glass-bg);
    color: var(--vg-text-secondary);
    border: 1px solid var(--vg-glass-border);
}

.vg-btn-secondary:hover[b-7za9z6zzz2] {
    background: var(--vg-glass-highlight);
    color: var(--vg-text-primary);
}

.vg-btn-close[b-7za9z6zzz2] {
    background: transparent;
    color: var(--vg-text-muted);
    border: none;
    font-size: 20px;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.vg-btn-close:hover[b-7za9z6zzz2] {
    background: var(--vg-glass-bg);
    color: var(--vg-text-primary);
}

@keyframes fadeIn-b-7za9z6zzz2 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn-b-7za9z6zzz2 {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Layout/Components/VoidGlassFx/VoidGlassFxHost.razor.rz.scp.css */
.vg-fx-host[b-7vgx5t9occ] {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
/* /Components/Layout/EVLayout.razor.rz.scp.css */
/* ============================================= */
/* EVLayout - Scoped CSS                         */
/* ============================================= */

html[b-e3urk16dbq], body[b-e3urk16dbq] {
    height: 100%;
    margin: 0;
}

.app-layout[b-e3urk16dbq] {
    display: flex;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: var(--vg-void-900);
    position: relative;
}

.main-column[b-e3urk16dbq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.content[b-e3urk16dbq] {
    flex: 1;
    padding: 1.5rem;
    overflow: auto;
    /* Base content readability: darker grey text than sidebar/menu. */
    color: var(--vg-text-muted);
}

.dock[b-e3urk16dbq] {
    height: 100%;
}

.vg-nav-home[b-e3urk16dbq] {
    width: 100%;
    justify-content: flex-start;
    color: var(--vg-nav-text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    border: none;
}

.vg-nav-home:hover[b-e3urk16dbq] {
    background: linear-gradient(90deg, color-mix(in srgb, var(--vg-energy-500) 15%, transparent) 0%, color-mix(in srgb, var(--vg-energy-500) 8%, transparent) 100%);
    color: var(--vg-text-primary);
    box-shadow: 0 0 15px color-mix(in srgb, var(--vg-energy-500) 30%, transparent);
}

.vg-nav-home.focus[b-e3urk16dbq] {
    background: linear-gradient(90deg, color-mix(in srgb, var(--vg-energy-500) 25%, transparent) 0%, color-mix(in srgb, var(--vg-energy-500) 15%, transparent) 100%);
    color: var(--vg-text-primary);
    box-shadow: 0 0 20px color-mix(in srgb, var(--vg-energy-500) 40%, transparent);
}

.vg-nav-home:focus-visible[b-e3urk16dbq] {
    outline: 2px solid var(--vg-energy-400);
    outline-offset: -2px;
}

.vg-nav-brand[b-e3urk16dbq] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.vg-logo-expanded[b-e3urk16dbq] {
    display: block;
    height: 42px;
    width: auto;
    max-width: 150px;
}

.vg-logo-collapsed[b-e3urk16dbq] {
    display: none;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

/* ============================================= */
/* Syncfusion Sidebar overrides (::deep)         */
/* ============================================= */

[b-e3urk16dbq] .dockSidebar.e-sidebar.e-right.e-close {
    visibility: visible;
    transform: translateX(0%);
}

[b-e3urk16dbq] .dockSidebar .e-icons::before {
    font-size: 25px;
}

[b-e3urk16dbq] .dockSidebar .home::before {
    content: '\e102';
}

[b-e3urk16dbq] .dockSidebar .profile::before {
    content: '\e10c';
}

[b-e3urk16dbq] .dockSidebar .info::before {
    content: '\e11b';
}

[b-e3urk16dbq] .dockSidebar .settings::before {
    content: '\e10b';
}

[b-e3urk16dbq] .e-sidebar .expand::before,
[b-e3urk16dbq] .e-sidebar.e-right.e-open .expand::before {
    content: '\e10f';
}

[b-e3urk16dbq] .e-sidebar.e-open .expand::before,
[b-e3urk16dbq] .e-sidebar.e-right .expand::before {
    content: '\e10e';
}

[b-e3urk16dbq] .dockSidebar.e-close .sidebar-item {
    padding: 5px 20px;
}

[b-e3urk16dbq] .dockSidebar.e-dock.e-close span.e-text {
    display: none;
}

[b-e3urk16dbq] .dockSidebar.e-dock.e-open span.e-text {
    display: inline-block;
}

[b-e3urk16dbq] .dockSidebar.e-sidebar.e-close .vg-logo-expanded {
    display: none;
}

[b-e3urk16dbq] .dockSidebar.e-sidebar.e-close .vg-logo-collapsed {
    display: block;
}

[b-e3urk16dbq] .dockSidebar li {
    list-style-type: none;
    cursor: pointer;
}

[b-e3urk16dbq] .dockSidebar ul {
    padding: 0px;
}

[b-e3urk16dbq] .dockSidebar.e-sidebar ul li:hover span {
    color: var(--vg-text-primary);
}

[b-e3urk16dbq] .dockSidebar span.e-icons {
    color: var(--vg-nav-text);
    line-height: 2;
}

[b-e3urk16dbq] .e-open .e-icons {
    margin-right: 16px;
}

[b-e3urk16dbq] .e-open .e-text {
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 23px;
    font-size: 15px;
}

[b-e3urk16dbq] .sidebar-item {
    text-align: center;
    border-bottom: 1px solid var(--vg-glass-border);
}

[b-e3urk16dbq] .e-sidebar.e-open .sidebar-item {
    text-align: left;
    padding-left: 15px;
    color: var(--vg-nav-text);
}

[b-e3urk16dbq] .dockSidebar.e-sidebar {
    background: var(--vg-void-1000);
    overflow: hidden;
}

/* Custom generated icon font */
@@font-face {
    font-family: 'e-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAAKAIAAAwAgT1MvMjciQ6oAAAEoAAAAVmNtYXBH1Ec8AAABsAAAAHJnbHlmKcXfOQAAAkAAAAg4aGVhZBLt+DYAAADQAAAANmhoZWEHogNsAAAArAAAACRobXR4LvgAAAAAAYAAAAAwbG9jYQukCgIAAAIkAAAAGm1heHABGQEOAAABCAAAACBuYW1lR4040wAACngAAAJtcG9zdEFgIbwAAAzoAAAArAABAAADUv9qAFoEAAAA//UD8wABAAAAAAAAAAAAAAAAAAAADAABAAAAAQAAlbrm7l8PPPUACwPoAAAAANfuWa8AAAAA1+5ZrwAAAAAD8wPzAAAACAACAAAAAAAAAAEAAAAMAQIAAwAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAQPqAZAABQAAAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA4QLhkANS/2oAWgPzAJYAAAABAAAAAAAABAAAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAAAAAAgAAAAMAAAAUAAMAAQAAABQABABeAAAADgAIAAIABuEC4QnhD+ES4RvhkP//AADhAuEJ4QvhEuEa4ZD//wAAAAAAAAAAAAAAAAABAA4ADgAOABYAFgAYAAAAAQACAAYABAADAAgABwAKAAkABQALAAAAAAAAAB4AQABaAQYB5gJkAnoCjgKwA8oEHAAAAAIAAAAAA+oDlQAEAAoAAAEFESERCQEVCQE1AgcBZv0mAXQB5P4c/g4Cw/D+lwFpAcP+s24BTf6qbgAAAAEAAAAAA+oD6gALAAATCQEXCQEHCQEnCQF4AYgBiGP+eAGIY/54/nhjAYj+eAPr/ngBiGP+eP54YwGI/nhjAYgBiAAAAwAAAAAD6gOkAAMABwALAAA3IRUhESEVIREhFSEVA9b8KgPW/CoD1vwq6I0B64wB640AAAEAAAAAA+oD4QCaAAABMx8aHQEPDjEPAh8bIT8bNS8SPxsCAA0aGhgMDAsLCwoKCgkJCQgHBwYGBgUEBAMCAgECAwUFBggICQoLCwwMDg0GAgEBAgIDBAMIBiIdHh0cHBoZFhUSEAcFBgQDAwEB/CoBAQMDBAUGBw8SFRYYGhsbHB0cHwsJBQQEAwIBAQMEDg0NDAsLCQkJBwYGBAMCAQEBAgIDBAQFBQYGBwgICAkJCgoKCwsLDAwMGRoD4gMEBwQFBQYGBwgICAkKCgsLDAwNDQ4ODxAQEBEWFxYWFhYVFRQUExIRERAOFxMLCggIBgYFBgQMDAwNDg4QDxERERIJCQkKCQkJFRQJCQoJCQgJEhERERAPDw4NDQsMBwgFBgYICQkKDAwODw8RERMTExUUFhUWFxYWFxEQEBAPDg4NDQwMCwsKCgkICAgHBgYFBQQEBQQAAAAAAwAAAAAD8wPzAEEAZQDFAAABMx8FFREzHwYdAg8GIS8GPQI/BjM1KwEvBT0CPwUzNzMfBR0CDwUrAi8FPQI/BTMnDw8fFz8XLxcPBgI+BQQDAwMCAT8EBAMDAwIBAQIDAwMEBP7cBAQDAwMCAQECAwMDBAQ/PwQEAwMDAgEBAgMDAwQE0AUEAwMDAgEBAgMDAwQFfAUEAwMDAgEBAgMDAwQFvRsbGRcWFRMREA4LCQgFAwEBAwUHCgsOEBETFRYXGRocHR4eHyAgISIiISAgHx4eHRsbGRcWFRMREA4LCQgFAwEBAwUHCgsOEBETFRYXGRsbHR4eHyAgISIiISAgHx4eAqYBAgIDBAQE/rMBAQEDAwQEBGgEBAQDAgIBAQEBAgIDBAQEaAQEBAMDAQEB0AECAwMDBAVoBAQDAwMCAeUBAgIEAwQEaAUEAwMDAgEBAgMDAwQFaAQEAwQCAgElERMVFhcZGhwdHh4fICAhIiIhICAfHh4dGxsZFxYVExEQDgsJCAUDAQEDBQcKCw4QERMVFhcZGxsdHh4fICAhIiIhICAfHh4dHBoZFxYVExEQDgsKBwUDAQEDBQcKCw4AAAIAAAAAA9MD6QALAE8AAAEOAQcuASc+ATceAQEHBgcnJgYPAQYWHwEGFBcHDgEfAR4BPwEWHwEeATsBMjY/ATY3FxY2PwE2Ji8BNjQnNz4BLwEuAQ8BJi8BLgErASIGApsBY0tKYwICY0pLY/7WEy4nfAkRBWQEAwdqAwNqBwMEZAURCXwnLhMBDgnICg4BEy4mfQkRBGQFAwhpAwNpCAMFZAQSCH0mLhMBDgrICQ4B9UpjAgJjSkpjAgJjAZWEFB4yBAYIrggSBlIYMhhSBhIIrggFAzIfE4QJDAwJhBQeMgQGCK4IEgZSGDIYUgYSCK4IBQMyHxOECQwMAAEAAAAAAwED6gAFAAAJAicJAQEbAef+FhoBzf4zA+v+Ff4VHwHMAc0AAAAAAQAAAAADAQPqAAUAAAEXCQEHAQLlHf4zAc0a/hYD6x7+M/40HwHrAAEAAAAAA/MD8wALAAATCQEXCQE3CQEnCQENAY7+cmQBjwGPZP5yAY5k/nH+cQOP/nH+cWQBjv5yZAGPAY9k/nEBjwAAAwAAAAAD8wPzAEAAgQEBAAAlDw4rAS8dPQE/DgUVDw4BPw47AR8dBRUfHTsBPx09AS8dKwEPHQL1DQ0ODg4PDw8QEBAQERERERUUFBQTExITEREREBAPDw0ODAwLCwkJCAcGBgQEAgIBAgIEAwUFBgYHBwkICQoCygECAgQDBQUGBgcHCQgJCv3QDQ0ODg4PDw8QEBAQERERERUUFBQTExITEREREBAPDw0ODAwLCwkJCAcGBgQEAgL8fgIDBQUHCAkKCwwNDg8PERESExQUFRYWFhgXGBkZGRoaGRkZGBcYFhYWFRQUExIREQ8PDg0MCwoJCAcFBQMCAgMFBQcICQoLDA0ODw8RERITFBQVFhYWGBcYGRkZGhoZGRkYFxgWFhYVFBQTEhERDw8ODQwLCgkIBwUFAwLFCgkICQcHBgYFBQMEAgIBAgIEBAYGBwgJCQsLDAwODQ8PEBARERETEhMTFBQUFREREREQEBAQDw8PDg4ODQ31ERERERAQEBAPDw8ODg4NDQIwCgkICQcHBgYFBQMEAgIBAgIEBAYGBwgJCQsLDAwODQ8PEBARERETEhMTFBQUFRoZGRkYFxgWFhYVFBQTEhERDw8ODQwLCgkIBwUFAwICAwUFBwgJCgsMDQ4PDxEREhMUFBUWFhYYFxgZGRkaGhkZGRgXGBYWFhUUFBMSEREPDw4NDAsKCQgHBQUDAgIDBQUHCAkKCwwNDg8PERESExQUFRYWFhgXGBkZGQAAAQAAAAAD6gPqAEMAABMhHw8RDw8hLw8RPw6aAswNDgwMDAsKCggIBwUFAwIBAQIDBQUHCAgKCgsMDAwODf00DQ4MDAwLCgoICAcFBQMCAQECAwUFBwgICgoLDAwMDgPrAQIDBQUHCAgKCgsLDA0NDv00Dg0NDAsLCgoICAcFBQMCAQECAwUFBwgICgoLCwwNDQ4CzA4NDQwLCwoKCAgHBQUDAgAAABIA3gABAAAAAAAAAAEAAAABAAAAAAABAA0AAQABAAAAAAACAAcADgABAAAAAAADAA0AFQABAAAAAAAEAA0AIgABAAAAAAAFAAsALwABAAAAAAAGAA0AOgABAAAAAAAKACwARwABAAAAAAALABIAcwADAAEECQAAAAIAhQADAAEECQABABoAhwADAAEECQACAA4AoQADAAEECQADABoArwADAAEECQAEABoAyQADAAEECQAFABYA4wADAAEECQAGABoA+QADAAEECQAKAFgBEwADAAEECQALACQBayBlLWljb25zLW1ldHJvUmVndWxhcmUtaWNvbnMtbWV0cm9lLWljb25zLW1ldHJvVmVyc2lvbiAxLjBlLWljb25zLW1ldHJvRm9udCBnZW5lcmF0ZWQgdXNpbmcgU3luY2Z1c2lvbiBNZXRybyBTdHVkaW93d3cuc3luY2Z1c2lvbi5jb20AIABlAC0AaQBjAG8AbgBzAC0AbQBlAHQAcgBvAFIAZQBnAHUAbABhAHIAZQAtAGkAYwBvAG4AcwAtAG0AZQB0AHIAbwBlAC0AaQBjAG8AbgBzAC0AbQBlAHQAcgBvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABlAC0AaQBjAG8AbgBzAC0AbQBlAHQAcgBvAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAHUAcwBpAG4AZwAgAFMAeQBuAGMAZgB1AHMAaQBvAG4AIABNAGUAdAByAG8AIABTAHQAdQBkAGkAbwB3AHcAdwAuAHMAeQBuAGMAZgB1AHMAaQBvAG4ALgBjAG8AbQAAAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0AB2hvbWUtMDELQ2xvc2UtaWNvbnMHbWVudS0wMQR1c2VyB0JUX2luZm8PU2V0dGluZ19BbmRyb2lkDWNoZXZyb24tcmlnaHQMY2hldnJvbi1sZWZ0CE1UX0NsZWFyDE1UX0p1bmttYWlscwRzdG9wAAA=) format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-sgvu1lde0h] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-sgvu1lde0h] {
    flex: 1;
}

.sidebar[b-sgvu1lde0h] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-sgvu1lde0h] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-sgvu1lde0h]  a, .top-row[b-sgvu1lde0h]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-sgvu1lde0h]  a:hover, .top-row[b-sgvu1lde0h]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-sgvu1lde0h]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-sgvu1lde0h] {
        justify-content: space-between;
    }

    .top-row[b-sgvu1lde0h]  a, .top-row[b-sgvu1lde0h]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-sgvu1lde0h] {
        flex-direction: row;
    }

    .sidebar[b-sgvu1lde0h] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-sgvu1lde0h] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-sgvu1lde0h]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-sgvu1lde0h], article[b-sgvu1lde0h] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-sgvu1lde0h] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-sgvu1lde0h] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-4ba2r1y838] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-4ba2r1y838] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-4ba2r1y838] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-4ba2r1y838] {
    font-size: 1.1rem;
}

.bi[b-4ba2r1y838] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-4ba2r1y838] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-4ba2r1y838] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-4ba2r1y838] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-4ba2r1y838] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-4ba2r1y838] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-4ba2r1y838] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-4ba2r1y838] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-4ba2r1y838] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-4ba2r1y838] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-4ba2r1y838] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-4ba2r1y838] {
        padding-bottom: 1rem;
    }

    .nav-item[b-4ba2r1y838]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-4ba2r1y838]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-4ba2r1y838]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-4ba2r1y838] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-4ba2r1y838] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-4ba2r1y838] {
        display: none;
    }

    .nav-scrollable[b-4ba2r1y838] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-6b0bz40ih7],
.components-reconnect-repeated-attempt-visible[b-6b0bz40ih7],
.components-reconnect-failed-visible[b-6b0bz40ih7],
.components-pause-visible[b-6b0bz40ih7],
.components-resume-failed-visible[b-6b0bz40ih7],
.components-rejoining-animation[b-6b0bz40ih7] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-6b0bz40ih7],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-6b0bz40ih7],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-6b0bz40ih7],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-6b0bz40ih7],
#components-reconnect-modal.components-reconnect-retrying[b-6b0bz40ih7],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-6b0bz40ih7],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-6b0bz40ih7],
#components-reconnect-modal.components-reconnect-failed[b-6b0bz40ih7],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-6b0bz40ih7] {
    display: block;
}


#components-reconnect-modal[b-6b0bz40ih7] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-6b0bz40ih7 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-6b0bz40ih7 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-6b0bz40ih7 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-6b0bz40ih7]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-6b0bz40ih7 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-6b0bz40ih7 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-6b0bz40ih7 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-6b0bz40ih7 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-6b0bz40ih7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-6b0bz40ih7] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-6b0bz40ih7] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-6b0bz40ih7] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-6b0bz40ih7] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-6b0bz40ih7] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-6b0bz40ih7] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-6b0bz40ih7 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-6b0bz40ih7] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-6b0bz40ih7 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Loading/GlobalLoader.razor.rz.scp.css */
.global-loader-overlay[b-mmrhsix087] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-mmrhsix087 0.3s ease-out;
}

.global-loader-backdrop[b-mmrhsix087] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.global-loader-content[b-mmrhsix087] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 48px;
    background: var(--vg-void-800);
    border: 2px solid var(--vg-glass-border);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    max-width: 400px;
    animation: slideUp-b-mmrhsix087 0.4s ease-out;
}

.loader-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring[b-mmrhsix087] {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin-b-mmrhsix087 2s linear infinite;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ring-1[b-mmrhsix087] {
    width: 100%;
    height: 100%;
    border-top-color: var(--vg-energy-500);
    border-right-color: var(--vg-energy-500);
    animation-duration: 1.5s;
    box-shadow: 0 0 20px color-mix(in srgb, var(--vg-energy-500) 50%, transparent);
}

.ring-2[b-mmrhsix087] {
    width: 80%;
    height: 80%;
    border-bottom-color: var(--vg-energy-400);
    border-left-color: var(--vg-energy-400);
    animation-duration: 2s;
    animation-direction: reverse;
    box-shadow: 0 0 15px color-mix(in srgb, var(--vg-energy-400) 40%, transparent);
    top: 10%;
    left: 10%;
}

.ring-3[b-mmrhsix087] {
    width: 60%;
    height: 60%;
    border-top-color: var(--vg-energy-300);
    border-right-color: var(--vg-energy-300);
    animation-duration: 2.5s;
    box-shadow: 0 0 10px color-mix(in srgb, var(--vg-energy-300) 30%, transparent);
    top: 20%;
    left: 20%;
}

.spinner-core[b-mmrhsix087] {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--vg-void-900);
    border: 2px solid var(--vg-glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px color-mix(in srgb, var(--vg-glass-border) 60%, transparent);
    z-index: 10;
}

.core-icon[b-mmrhsix087] {
    font-size: 20px;
    color: var(--vg-energy-500);
    animation: pulse-b-mmrhsix087 2s ease-in-out infinite;
}

.loader-message[b-mmrhsix087] {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loader-message h3[b-mmrhsix087] {
    margin: 0;
    color: var(--vg-text-primary);
    font-size: 18px;
    font-weight: 600;
}

.progress-container[b-mmrhsix087] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar[b-mmrhsix087] {
    width: 100%;
    height: 8px;
    background: var(--vg-void-900);
    border: 1px solid var(--vg-glass-border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill[b-mmrhsix087] {
    height: 100%;
    background: linear-gradient(90deg, var(--vg-energy-500), var(--vg-energy-400));
    border-radius: 3px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px color-mix(in srgb, var(--vg-energy-500) 40%, transparent);
    position: relative;
}

.progress-fill[b-mmrhsix087]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-text[b-mmrhsix087] {
    color: var(--vg-text-muted);
    font-size: 12px;
    font-family: 'Courier New', monospace;
}

.loader-time[b-mmrhsix087] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.time-text[b-mmrhsix087] {
    color: var(--vg-text-muted);
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.dismiss-btn[b-mmrhsix087] {
    background: var(--vg-glass-bg);
    border: 1px solid var(--vg-glass-border);
    color: var(--vg-text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dismiss-btn:hover[b-mmrhsix087] {
    background: var(--vg-glass-highlight);
    border-color: var(--vg-energy-500);
    color: var(--vg-text-primary);
}

.dismiss-icon[b-mmrhsix087] {
    font-size: 14px;
    color: var(--vg-energy-500);
}

@keyframes fadeIn-b-mmrhsix087 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-mmrhsix087 {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin-b-mmrhsix087 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-b-mmrhsix087 {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* DATA FETCH ANIMATIONS */
.data-fetch-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-packets[b-mmrhsix087] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.packet[b-mmrhsix087] {
    position: absolute;
    font-size: 20px;
    animation: dataPacketFly-b-mmrhsix087 2s ease-in-out infinite;
}

.packet-1[b-mmrhsix087] {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.packet-2[b-mmrhsix087] {
    top: 50%;
    left: 20%;
    animation-delay: 0.5s;
}

.packet-3[b-mmrhsix087] {
    top: 30%;
    left: 40%;
    animation-delay: 1s;
}

.server-icon[b-mmrhsix087] {
    font-size: 40px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse-b-mmrhsix087 2s ease-in-out infinite;
}

@keyframes dataPacketFly-b-mmrhsix087 {
    0% { transform: translateX(0) scale(0.8); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(60px) scale(1.2); opacity: 0; }
}

/* DATA STORE ANIMATIONS */
.data-store-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.database-icon[b-mmrhsix087] {
    font-size: 48px;
    animation: databasePulse-b-mmrhsix087 2s ease-in-out infinite;
}

.storage-bars[b-mmrhsix087] {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.bar[b-mmrhsix087] {
    width: 8px;
    background: var(--vg-energy-500);
    border-radius: 4px;
    animation: storageFill-b-mmrhsix087 1.5s ease-in-out infinite;
}

.bar-1[b-mmrhsix087] { height: 20px; animation-delay: 0s; }
.bar-2[b-mmrhsix087] { height: 30px; animation-delay: 0.3s; }
.bar-3[b-mmrhsix087] { height: 25px; animation-delay: 0.6s; }

@keyframes databasePulse-b-mmrhsix087 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes storageFill-b-mmrhsix087 {
    0%, 100% { height: 8px; opacity: 0.5; }
    50% { height: 35px; opacity: 1; }
}

/* PROCESSING ANIMATIONS */
.processing-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpu-core[b-mmrhsix087] {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-ring[b-mmrhsix087] {
    position: absolute;
    border: 2px solid var(--vg-energy-500);
    border-radius: 50%;
    animation: spin-b-mmrhsix087 3s linear infinite;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.core-ring.ring-1[b-mmrhsix087] {
    width: 100%;
    height: 100%;
    animation-duration: 2s;
}

.core-ring.ring-2[b-mmrhsix087] {
    width: 80%;
    height: 80%;
    animation-direction: reverse;
    animation-duration: 2.5s;
    top: 10%;
    left: 10%;
}

.cpu-icon[b-mmrhsix087] {
    font-size: 24px;
    z-index: 2;
    animation: cpuGlow-b-mmrhsix087 1s ease-in-out infinite alternate;
}

.processing-particles[b-mmrhsix087] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle[b-mmrhsix087] {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--vg-energy-500);
    border-radius: 50%;
    animation: particleOrbit-b-mmrhsix087 2s linear infinite;
}

.p-1[b-mmrhsix087] { top: 10%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.p-2[b-mmrhsix087] { top: 50%; right: 10%; transform: translateY(-50%); animation-delay: 0.5s; }
.p-3[b-mmrhsix087] { bottom: 10%; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.p-4[b-mmrhsix087] { top: 50%; left: 10%; transform: translateY(-50%); animation-delay: 1.5s; }

@keyframes cpuGlow-b-mmrhsix087 {
    from { filter: brightness(1); }
    to { filter: brightness(1.5); }
}

@keyframes particleOrbit-b-mmrhsix087 {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); opacity: 0; }
}

/* UPLOADING ANIMATIONS */
.upload-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.upload-arrow[b-mmrhsix087] {
    font-size: 32px;
    animation: uploadMove-b-mmrhsix087 2s ease-in-out infinite;
}

.upload-cloud[b-mmrhsix087] {
    font-size: 48px;
    animation: cloudFloat-b-mmrhsix087 3s ease-in-out infinite;
}

.upload-dots[b-mmrhsix087] {
    display: flex;
    gap: 4px;
}

.dot[b-mmrhsix087] {
    width: 8px;
    height: 8px;
    background: var(--vg-energy-500);
    border-radius: 50%;
    animation: uploadDotPulse-b-mmrhsix087 1.5s ease-in-out infinite;
}

.dot-1[b-mmrhsix087] { animation-delay: 0s; }
.dot-2[b-mmrhsix087] { animation-delay: 0.3s; }
.dot-3[b-mmrhsix087] { animation-delay: 0.6s; }

@keyframes uploadMove-b-mmrhsix087 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes cloudFloat-b-mmrhsix087 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes uploadDotPulse-b-mmrhsix087 {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* DOWNLOADING ANIMATIONS */
.download-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.download-arrow[b-mmrhsix087] {
    font-size: 32px;
    animation: downloadMove-b-mmrhsix087 2s ease-in-out infinite;
}

.download-cloud[b-mmrhsix087] {
    font-size: 48px;
    animation: cloudFloat-b-mmrhsix087 3s ease-in-out infinite;
}

.download-progress[b-mmrhsix087] {
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

.progress-segment[b-mmrhsix087] {
    width: 6px;
    background: var(--vg-energy-500);
    border-radius: 3px;
    animation: downloadFill-b-mmrhsix087 2s ease-in-out infinite;
}

.seg-1[b-mmrhsix087] { animation-delay: 0s; }
.seg-2[b-mmrhsix087] { animation-delay: 0.4s; }
.seg-3[b-mmrhsix087] { animation-delay: 0.8s; }

@keyframes downloadMove-b-mmrhsix087 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes downloadFill-b-mmrhsix087 {
    0%, 100% { height: 6px; opacity: 0.5; }
    50% { height: 20px; opacity: 1; }
}

/* CALCULATING ANIMATIONS */
.calculating-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.calc-display[b-mmrhsix087] {
    background: var(--vg-void-900);
    border: 2px solid var(--vg-glass-border);
    border-radius: 8px;
    padding: 8px 16px;
    min-width: 80px;
    text-align: center;
}

.calc-number[b-mmrhsix087] {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: var(--vg-energy-500);
    font-weight: bold;
    animation: calcNumberChange-b-mmrhsix087 2s ease-in-out infinite;
}

.calc-gears[b-mmrhsix087] {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.gear[b-mmrhsix087] {
    font-size: 20px;
    animation: gearSpin-b-mmrhsix087 3s linear infinite;
}

.gear-1[b-mmrhsix087] { animation-delay: 0s; }
.gear-2[b-mmrhsix087] { animation-delay: 1s; animation-direction: reverse; }
.gear-3[b-mmrhsix087] { animation-delay: 2s; }

@keyframes calcNumberChange-b-mmrhsix087 {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

@keyframes gearSpin-b-mmrhsix087 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* SEARCHING ANIMATIONS */
.searching-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-magnifier[b-mmrhsix087] {
    font-size: 48px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: searchScan-b-mmrhsix087 2s ease-in-out infinite;
}

.search-results[b-mmrhsix087] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.result[b-mmrhsix087] {
    position: absolute;
    font-size: 16px;
    animation: searchResult-b-mmrhsix087 3s ease-in-out infinite;
}

.r-1[b-mmrhsix087] { top: 20%; left: 20%; animation-delay: 0s; }
.r-2[b-mmrhsix087] { bottom: 30%; left: 25%; animation-delay: 1s; }
.r-3[b-mmrhsix087] { top: 40%; left: 15%; animation-delay: 2s; }

@keyframes searchScan-b-mmrhsix087 {
    0%, 100% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.1); }
}

@keyframes searchResult-b-mmrhsix087 {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    20% { transform: scale(1.2) rotate(180deg); opacity: 1; }
    40% { transform: scale(1) rotate(360deg); opacity: 1; }
    100% { transform: scale(0.8) rotate(540deg); opacity: 0; }
}

/* CONNECTING ANIMATIONS */
.connecting-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-dots[b-mmrhsix087] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot[b-mmrhsix087] {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--vg-energy-500);
    border-radius: 50%;
    animation: connectionPulse-b-mmrhsix087 2s ease-in-out infinite;
}

.dot-1[b-mmrhsix087] { top: 20%; left: 20%; animation-delay: 0s; }
.dot-2[b-mmrhsix087] { top: 20%; right: 20%; animation-delay: 0.5s; }
.dot-3[b-mmrhsix087] { bottom: 20%; left: 20%; animation-delay: 1s; }
.dot-4[b-mmrhsix087] { bottom: 20%; right: 20%; animation-delay: 1.5s; }

.connection-lines[b-mmrhsix087] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line[b-mmrhsix087] {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vg-energy-500), transparent);
    animation: connectionLine-b-mmrhsix087 3s linear infinite;
    transform-origin: left center;
}

.line-1[b-mmrhsix087] { 
    top: 20%; 
    left: 20%; 
    width: 60%; 
    animation-delay: 0s; 
}

.line-2[b-mmrhsix087] { 
    top: 20%; 
    left: 20%; 
    width: 60%; 
    transform: rotate(90deg); 
    transform-origin: left center;
    animation-delay: 1s; 
}

.line-3[b-mmrhsix087] { 
    bottom: 20%; 
    left: 20%; 
    width: 60%; 
    transform: rotate(0deg); 
    animation-delay: 2s; 
}

@keyframes connectionPulse-b-mmrhsix087 {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes connectionLine-b-mmrhsix087 {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

/* SYNCING ANIMATIONS */
.syncing-spinner[b-mmrhsix087] {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.sync-arrows[b-mmrhsix087] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.arrow[b-mmrhsix087] {
    font-size: 24px;
    animation: syncArrowMove-b-mmrhsix087 2s ease-in-out infinite;
}

.arrow-left[b-mmrhsix087] { animation-delay: 0s; }
.arrow-right[b-mmrhsix087] { animation-delay: 1s; }

.sync-circle[b-mmrhsix087] {
    font-size: 32px;
    animation: spin-b-mmrhsix087 2s linear infinite;
}

.sync-waves[b-mmrhsix087] {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.wave[b-mmrhsix087] {
    width: 40px;
    height: 4px;
    background: var(--vg-energy-500);
    border-radius: 2px;
    animation: syncWave-b-mmrhsix087 1.5s ease-in-out infinite;
}

.wave-1[b-mmrhsix087] { animation-delay: 0s; }
.wave-2[b-mmrhsix087] { animation-delay: 0.3s; }

@keyframes syncArrowMove-b-mmrhsix087 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

@keyframes syncWave-b-mmrhsix087 {
    0%, 100% { transform: scaleX(0.5); opacity: 0.5; }
    50% { transform: scaleX(1.5); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .global-loader-content[b-mmrhsix087] {
        margin: 20px;
        padding: 32px 24px;
        max-width: calc(100% - 40px);
    }
    
    .loader-spinner[b-mmrhsix087] {
        width: 100px;
        height: 100px;
    }
    
    .spinner-core[b-mmrhsix087] {
        width: 32px;
        height: 32px;
    }
    
    .core-icon[b-mmrhsix087] {
        font-size: 16px;
    }
    
    .loader-message h3[b-mmrhsix087] {
        font-size: 16px;
    }
}
/* /Components/Loading/Loaders/CalculatingLoader.razor.rz.scp.css */
.calculating-container[b-vn1y0zr36c] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.calculator-body[b-vn1y0zr36c] {
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, var(--vg-void-800), var(--vg-void-900));
    border: 2px solid var(--vg-glass-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.calc-screen[b-vn1y0zr36c] {
    height: 20px;
    background: var(--vg-void-1000);
    border: 1px solid var(--vg-glass-border);
    border-radius: 4px 4px 0 0;
    margin: 4px 4px 2px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.display-content[b-vn1y0zr36c] {
    display: flex;
    align-items: center;
    gap: 2px;
    width: 100%;
    padding: 0 2px;
}

.calc-numbers[b-vn1y0zr36c] {
    display: flex;
    gap: 1px;
    flex: 1;
}

.number[b-vn1y0zr36c] {
    font-family: 'Courier New', monospace;
    font-size: 6px;
    color: var(--vg-energy-500);
    font-weight: bold;
    animation: numberChange-b-vn1y0zr36c 1.5s ease-in-out infinite;
}

.num-1[b-vn1y0zr36c] { animation-delay: 0s; }
.num-2[b-vn1y0zr36c] { animation-delay: 0.5s; }
.num-3[b-vn1y0zr36c] { animation-delay: 1s; }

.calc-cursor[b-vn1y0zr36c] {
    font-family: 'Courier New', monospace;
    font-size: 6px;
    color: var(--vg-energy-400);
    animation: cursorBlink-b-vn1y0zr36c 1s ease-in-out infinite;
}

.calc-keypad[b-vn1y0zr36c] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 2px;
}

.key-row[b-vn1y0zr36c] {
    display: flex;
    gap: 1px;
    justify-content: space-between;
}

.key[b-vn1y0zr36c] {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4px;
    font-weight: bold;
    animation: keyPress-b-vn1y0zr36c 2s ease-in-out infinite;
}

.key-op[b-vn1y0zr36c] {
    background: var(--vg-energy-500);
    color: var(--vg-void-1000);
}

.key-num[b-vn1y0zr36c] {
    background: var(--vg-void-700);
    color: var(--vg-text-secondary);
}

.key-func[b-vn1y0zr36c] {
    background: var(--vg-energy-400);
    color: var(--vg-void-1000);
}

.key:nth-child(1)[b-vn1y0zr36c] { animation-delay: 0s; }
.key:nth-child(2)[b-vn1y0zr36c] { animation-delay: 0.2s; }
.key:nth-child(3)[b-vn1y0zr36c] { animation-delay: 0.4s; }
.key:nth-child(4)[b-vn1y0zr36c] { animation-delay: 0.6s; }

.calc-gears[b-vn1y0zr36c] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gear[b-vn1y0zr36c] {
    position: absolute;
    font-size: 12px;
    animation: gearSpin-b-vn1y0zr36c 3s linear infinite;
}

.gear-large[b-vn1y0zr36c] {
    top: 10%;
    right: 5%;
    font-size: 14px;
    animation-duration: 2.5s;
}

.gear-medium[b-vn1y0zr36c] {
    bottom: 15%;
    left: 8%;
    font-size: 10px;
    animation-duration: 3s;
    animation-direction: reverse;
}

.gear-small[b-vn1y0zr36c] {
    top: 60%;
    right: 15%;
    font-size: 8px;
    animation-duration: 2s;
}

.math-particles[b-vn1y0zr36c] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle[b-vn1y0zr36c] {
    position: absolute;
    font-size: 8px;
    color: var(--vg-energy-400);
    animation: particleFloat-b-vn1y0zr36c 4s ease-in-out infinite;
}

.particle-1[b-vn1y0zr36c] { top: 5%; left: 10%; animation-delay: 0s; }
.particle-2[b-vn1y0zr36c] { top: 15%; right: 8%; animation-delay: 0.7s; }
.particle-3[b-vn1y0zr36c] { bottom: 20%; right: 12%; animation-delay: 1.4s; }
.particle-4[b-vn1y0zr36c] { bottom: 10%; left: 15%; animation-delay: 2.1s; }
.particle-5[b-vn1y0zr36c] { top: 50%; left: 5%; animation-delay: 2.8s; }
.particle-6[b-vn1y0zr36c] { top: 70%; right: 5%; animation-delay: 3.5s; }

.thought-bubbles[b-vn1y0zr36c] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble[b-vn1y0zr36c] {
    position: absolute;
    background: var(--vg-void-800);
    border: 1px solid var(--vg-glass-border);
    border-radius: 8px;
    padding: 2px 4px;
    font-family: 'Courier New', monospace;
    font-size: 6px;
    color: var(--vg-energy-400);
    animation: bubbleFloat-b-vn1y0zr36c 3s ease-in-out infinite;
}

.bubble-1[b-vn1y0zr36c] {
    top: 10%;
    right: 25%;
    animation-delay: 0s;
}

.bubble-2[b-vn1y0zr36c] {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.bubble-3[b-vn1y0zr36c] {
    top: 5%;
    right: 10%;
    animation-delay: 2s;
}

.bubble[b-vn1y0zr36c]::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--vg-void-800);
    border: 1px solid var(--vg-glass-border);
    border-radius: 50%;
    border-top: none;
    border-left: none;
    transform: translateX(-50%) rotate(45deg);
}

@keyframes numberChange-b-vn1y0zr36c {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

@keyframes cursorBlink-b-vn1y0zr36c {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes keyPress-b-vn1y0zr36c {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    50% { 
        transform: scale(0.9); 
        box-shadow: 0 0 5px color-mix(in srgb, var(--vg-energy-500) 50%, transparent);
    }
}

@keyframes gearSpin-b-vn1y0zr36c {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particleFloat-b-vn1y0zr36c {
    0% { 
        opacity: 0; 
        transform: translateY(0) rotate(0deg) scale(0.8);
    }
    20% { 
        opacity: 1; 
        transform: translateY(-5px) rotate(90deg) scale(1);
    }
    80% { 
        opacity: 1; 
        transform: translateY(-15px) rotate(270deg) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translateY(-25px) rotate(360deg) scale(0.8);
    }
}

@keyframes bubbleFloat-b-vn1y0zr36c {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(0) scale(0.9);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-8px) scale(1.1);
    }
}
/* /Components/Loading/Loaders/ConnectingLoader.razor.rz.scp.css */
.connecting-container[b-mj163q94l8] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.network-nodes[b-mj163q94l8] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node[b-mj163q94l8] {
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-1[b-mj163q94l8] { top: 20%; left: 20%; }
.node-2[b-mj163q94l8] { top: 20%; right: 20%; }
.node-3[b-mj163q94l8] { bottom: 20%; left: 20%; }
.node-4[b-mj163q94l8] { bottom: 20%; right: 20%; }

.node-core[b-mj163q94l8] {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--vg-energy-500), var(--vg-energy-400));
    border-radius: 50%;
    position: absolute;
    z-index: 5;
    box-shadow: 0 0 10px color-mix(in srgb, var(--vg-energy-500) 60%, transparent);
}

.node-rings[b-mj163q94l8] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring[b-mj163q94l8] {
    position: absolute;
    border: 1px solid var(--vg-energy-400);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: nodePulse-b-mj163q94l8 2s ease-in-out infinite;
}

.ring-outer[b-mj163q94l8] {
    width: 20px;
    height: 20px;
}

.ring-inner[b-mj163q94l8] {
    width: 12px;
    height: 12px;
    animation-delay: 1s;
}

.node-1 .ring[b-mj163q94l8] { animation-delay: 0s; }
.node-2 .ring[b-mj163q94l8] { animation-delay: 0.5s; }
.node-3 .ring[b-mj163q94l8] { animation-delay: 1s; }
.node-4 .ring[b-mj163q94l8] { animation-delay: 1.5s; }

.connection-lines[b-mj163q94l8] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line[b-mj163q94l8] {
    position: absolute;
    height: 2px;
    background: var(--vg-void-700);
    transform-origin: left center;
}

.line-1[b-mj163q94l8] {
    top: 20%;
    left: 30%;
    width: 40%;
}

.line-2[b-mj163q94l8] {
    top: 30%;
    left: 20%;
    width: 40%;
    transform: rotate(90deg);
    transform-origin: left center;
}

.line-3[b-mj163q94l8] {
    bottom: 20%;
    left: 30%;
    width: 40%;
}

.line-4[b-mj163q94l8] {
    bottom: 30%;
    left: 20%;
    width: 40%;
    transform: rotate(90deg);
    transform-origin: left center;
}

.line-pulse[b-mj163q94l8] {
    position: absolute;
    height: 100%;
    width: 8px;
    background: linear-gradient(90deg, transparent, var(--vg-energy-500), transparent);
    animation: pulseTravel-b-mj163q94l8 2s linear infinite;
}

.pulse-1[b-mj163q94l8] { animation-delay: 0s; }
.pulse-2[b-mj163q94l8] { animation-delay: 1s; }

.data-packets[b-mj163q94l8] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.packet[b-mj163q94l8] {
    position: absolute;
    font-size: 8px;
    animation: packetTravel-b-mj163q94l8 3s ease-in-out infinite;
}

.packet-1[b-mj163q94l8] { 
    top: 20%; 
    left: 30%; 
    animation-delay: 0s; 
}

.packet-2[b-mj163q94l8] { 
    top: 30%; 
    left: 20%; 
    animation-delay: 0.75s; 
}

.packet-3[b-mj163q94l8] { 
    bottom: 20%; 
    left: 30%; 
    animation-delay: 1.5s; 
}

.packet-4[b-mj163q94l8] { 
    bottom: 30%; 
    left: 20%; 
    animation-delay: 2.25s; 
}

.connection-status[b-mj163q94l8] {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.status-indicator[b-mj163q94l8] {
    display: flex;
    gap: 2px;
}

.indicator-light[b-mj163q94l8] {
    width: 3px;
    height: 3px;
    background: var(--vg-energy-400);
    border-radius: 50%;
    animation: statusBlink-b-mj163q94l8 1.5s ease-in-out infinite;
}

.light-1[b-mj163q94l8] { animation-delay: 0s; }
.light-2[b-mj163q94l8] { animation-delay: 0.5s; }
.light-3[b-mj163q94l8] { animation-delay: 1s; }

.status-text[b-mj163q94l8] {
    font-size: 6px;
    color: var(--vg-text-muted);
    font-family: 'Courier New', monospace;
    animation: textFade-b-mj163q94l8 2s ease-in-out infinite;
}

@keyframes nodePulse-b-mj163q94l8 {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes pulseTravel-b-mj163q94l8 {
    0% { 
        opacity: 0; 
        transform: translateX(-10px);
    }
    10% { 
        opacity: 1; 
        transform: translateX(0);
    }
    90% { 
        opacity: 1; 
        transform: translateX(calc(100% - 10px));
    }
    100% { 
        opacity: 0; 
        transform: translateX(100%);
    }
}

@keyframes packetTravel-b-mj163q94l8 {
    0% { 
        opacity: 0; 
        transform: translateX(0) scale(0.8);
    }
    10% { 
        opacity: 1; 
        transform: translateX(10px) scale(1);
    }
    45% { 
        opacity: 1; 
        transform: translateX(50%) scale(1);
    }
    90% { 
        opacity: 1; 
        transform: translateX(90%) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translateX(100%) scale(0.8);
    }
}

@keyframes statusBlink-b-mj163q94l8 {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes textFade-b-mj163q94l8 {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
/* /Components/Loading/Loaders/DataFetchLoader.razor.rz.scp.css */
.data-fetch-container[b-h8lzaceops] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
}

.server[b-h8lzaceops] {
    position: relative;
    z-index: 5;
}

.server-body[b-h8lzaceops] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.server-screen[b-h8lzaceops] {
    width: 24px;
    height: 18px;
    background: var(--vg-void-900);
    border: 2px solid var(--vg-energy-500);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px color-mix(in srgb, var(--vg-energy-500) 50%, transparent);
}

.data-lines[b-h8lzaceops] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 2px;
}

.line[b-h8lzaceops] {
    height: 1px;
    background: var(--vg-energy-400);
    animation: dataFlow-b-h8lzaceops 1.5s ease-in-out infinite;
}

.line-1[b-h8lzaceops] { width: 12px; animation-delay: 0s; }
.line-2[b-h8lzaceops] { width: 16px; animation-delay: 0.2s; }
.line-3[b-h8lzaceops] { width: 10px; animation-delay: 0.4s; }
.line-4[b-h8lzaceops] { width: 14px; animation-delay: 0.6s; }

.server-light[b-h8lzaceops] {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 4px;
    height: 4px;
    background: var(--vg-energy-500);
    border-radius: 50%;
    animation: serverBlink-b-h8lzaceops 2s ease-in-out infinite;
    box-shadow: 0 0 6px color-mix(in srgb, var(--vg-energy-500) 80%, transparent);
}

.server-base[b-h8lzaceops] {
    width: 28px;
    height: 4px;
    background: var(--vg-glass-border);
    border-radius: 2px;
    margin-top: 2px;
}

.data-stream[b-h8lzaceops] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-packets[b-h8lzaceops] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.packet[b-h8lzaceops] {
    position: absolute;
    display: flex;
    align-items: center;
    animation: packetFly-b-h8lzaceops 3s ease-in-out infinite;
}

.packet-1[b-h8lzaceops] {
    top: 30%;
    animation-delay: 0s;
}

.packet-2[b-h8lzaceops] {
    top: 50%;
    animation-delay: 0.75s;
}

.packet-3[b-h8lzaceops] {
    top: 40%;
    animation-delay: 1.5s;
}

.packet-4[b-h8lzaceops] {
    top: 60%;
    animation-delay: 2.25s;
}

.packet-body[b-h8lzaceops] {
    font-size: 12px;
    animation: packetRotate-b-h8lzaceops 2s linear infinite;
    z-index: 2;
}

.packet-trail[b-h8lzaceops] {
    position: absolute;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--vg-energy-500), transparent);
    right: 100%;
    opacity: 0.6;
}

.network-waves[b-h8lzaceops] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave[b-h8lzaceops] {
    position: absolute;
    border: 1px solid var(--vg-energy-400);
    border-radius: 50%;
    opacity: 0;
    animation: networkPulse-b-h8lzaceops 2s ease-out infinite;
}

.wave-1[b-h8lzaceops] {
    width: 30px;
    height: 30px;
    top: 35%;
    left: 35%;
    animation-delay: 0s;
}

.wave-2[b-h8lzaceops] {
    width: 20px;
    height: 20px;
    top: 40%;
    left: 40%;
    animation-delay: 0.5s;
}

.wave-3[b-h8lzaceops] {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 30%;
    animation-delay: 1s;
}

.client[b-h8lzaceops] {
    position: relative;
    z-index: 5;
}

.client-device[b-h8lzaceops] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.device-screen[b-h8lzaceops] {
    width: 20px;
    height: 16px;
    background: var(--vg-void-900);
    border: 1px solid var(--vg-glass-border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow: 0 0 5px color-mix(in srgb, var(--vg-glass-border) 40%, transparent);
}

.loading-dots[b-h8lzaceops] {
    display: flex;
    gap: 1px;
}

.dot[b-h8lzaceops] {
    width: 2px;
    height: 2px;
    background: var(--vg-energy-400);
    border-radius: 50%;
    animation: loadingPulse-b-h8lzaceops 1.5s ease-in-out infinite;
}

.dot-1[b-h8lzaceops] { animation-delay: 0s; }
.dot-2[b-h8lzaceops] { animation-delay: 0.3s; }
.dot-3[b-h8lzaceops] { animation-delay: 0.6s; }

.device-stand[b-h8lzaceops] {
    width: 16px;
    height: 3px;
    background: var(--vg-glass-border);
    border-radius: 1px;
    margin-top: 1px;
}

@keyframes dataFlow-b-h8lzaceops {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes serverBlink-b-h8lzaceops {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes packetFly-b-h8lzaceops {
    0% { 
        left: 30%; 
        opacity: 0; 
        transform: scale(0.8);
    }
    10% { 
        opacity: 1; 
        transform: scale(1);
    }
    90% { 
        opacity: 1; 
        transform: scale(1);
    }
    100% { 
        left: 70%; 
        opacity: 0; 
        transform: scale(0.8);
    }
}

@keyframes packetRotate-b-h8lzaceops {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes networkPulse-b-h8lzaceops {
    0% { 
        opacity: 0; 
        transform: scale(0.5);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    100% { 
        opacity: 0; 
        transform: scale(1.5);
    }
}

@keyframes loadingPulse-b-h8lzaceops {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}
/* /Components/Loading/Loaders/DataStoreLoader.razor.rz.scp.css */
.datastore-container[b-4u5k9ihl8a] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.database-server[b-4u5k9ihl8a] {
    position: absolute;
    width: 50px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.server-chassis[b-4u5k9ihl8a] {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, var(--vg-void-800), var(--vg-void-900));
    border: 2px solid var(--vg-glass-border);
    border-radius: 6px;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.chassis-body[b-4u5k9ihl8a] {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 4px;
}

.power-indicator[b-4u5k9ihl8a] {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-bottom: 4px;
}

.indicator-light[b-4u5k9ihl8a] {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    animation: powerBlink-b-4u5k9ihl8a 2s ease-in-out infinite;
}

.light-1[b-4u5k9ihl8a] { 
    background: var(--vg-energy-500); 
    animation-delay: 0s; 
}

.light-2[b-4u5k9ihl8a] { 
    background: var(--vg-energy-400); 
    animation-delay: 0.5s; 
}

.light-3[b-4u5k9ihl8a] { 
    background: var(--vg-energy-300); 
    animation-delay: 1s; 
}

.server-vents[b-4u5k9ihl8a] {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
}

.vent[b-4u5k9ihl8a] {
    width: 2px;
    height: 8px;
    background: var(--vg-void-700);
    border-radius: 1px;
    animation: ventPulse-b-4u5k9ihl8a 1.5s ease-in-out infinite;
}

.vent-1[b-4u5k9ihl8a] { animation-delay: 0s; }
.vent-2[b-4u5k9ihl8a] { animation-delay: 0.3s; }
.vent-3[b-4u5k9ihl8a] { animation-delay: 0.6s; }
.vent-4[b-4u5k9ihl8a] { animation-delay: 0.9s; }

.server-face[b-4u5k9ihl8a] {
    position: absolute;
    bottom: 2px;
    left: 2px;
    right: 2px;
    height: 20px;
    background: var(--vg-void-900);
    border: 1px solid var(--vg-glass-border);
    border-radius: 3px;
    padding: 2px;
}

.drive-bays[b-4u5k9ihl8a] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    height: 100%;
}

.drive-bay[b-4u5k9ihl8a] {
    background: var(--vg-void-800);
    border: 1px solid var(--vg-glass-border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drive-led[b-4u5k9ihl8a] {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    right: 2px;
}

.led-active[b-4u5k9ihl8a] {
    background: var(--vg-energy-500);
    animation: ledBlink-b-4u5k9ihl8a 1s ease-in-out infinite;
}

.led-standby[b-4u5k9ihl8a] {
    background: var(--vg-energy-400);
    opacity: 0.5;
}

.drive-activity[b-4u5k9ihl8a] {
    width: 4px;
    height: 1px;
    background: var(--vg-energy-400);
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    animation: activityPulse-b-4u5k9ihl8a 2s ease-in-out infinite;
}

.activity-1[b-4u5k9ihl8a] { animation-delay: 0s; }
.activity-2[b-4u5k9ihl8a] { animation-delay: 0.5s; }
.activity-3[b-4u5k9ihl8a] { animation-delay: 1s; }
.activity-4[b-4u5k9ihl8a] { animation-delay: 1.5s; }

.server-base[b-4u5k9ihl8a] {
    width: 54px;
    height: 4px;
    background: var(--vg-void-700);
    border-radius: 2px;
    margin: 2px auto 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.data-flow[b-4u5k9ihl8a] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-particles[b-4u5k9ihl8a] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle[b-4u5k9ihl8a] {
    position: absolute;
    font-size: 6px;
    animation: particleSpiral-b-4u5k9ihl8a 4s ease-in-out infinite;
}

.particle-1[b-4u5k9ihl8a] { top: 20%; left: 15%; animation-delay: 0s; }
.particle-2[b-4u5k9ihl8a] { top: 30%; right: 20%; animation-delay: 0.8s; }
.particle-3[b-4u5k9ihl8a] { bottom: 25%; left: 25%; animation-delay: 1.6s; }
.particle-4[b-4u5k9ihl8a] { bottom: 15%; right: 15%; animation-delay: 2.4s; }
.particle-5[b-4u5k9ihl8a] { top: 60%; left: 50%; animation-delay: 3.2s; }

.storage-waves[b-4u5k9ihl8a] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave[b-4u5k9ihl8a] {
    position: absolute;
    border: 1px solid var(--vg-energy-300);
    border-radius: 50%;
    opacity: 0;
    animation: storageWave-b-4u5k9ihl8a 3s ease-out infinite;
}

.wave-1[b-4u5k9ihl8a] {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2[b-4u5k9ihl8a] {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.wave-3[b-4u5k9ihl8a] {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.storage-towers[b-4u5k9ihl8a] {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0 10px;
    pointer-events: none;
}

.tower[b-4u5k9ihl8a] {
    width: 8px;
    height: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tower-base[b-4u5k9ihl8a] {
    width: 10px;
    height: 3px;
    background: var(--vg-glass-border);
    border-radius: 1px;
}

.tower-levels[b-4u5k9ihl8a] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 1px;
}

.level[b-4u5k9ihl8a] {
    width: 100%;
    height: 8px;
    background: var(--vg-void-800);
    border: 1px solid var(--vg-glass-border);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.level-fill[b-4u5k9ihl8a] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--vg-energy-500), var(--vg-energy-400));
    animation: levelFill-b-4u5k9ihl8a 3s ease-in-out infinite;
}

.tower-1 .fill-1[b-4u5k9ihl8a] { animation-delay: 0s; }
.tower-1 .fill-2[b-4u5k9ihl8a] { animation-delay: 0.3s; }
.tower-1 .fill-3[b-4u5k9ihl8a] { animation-delay: 0.6s; }
.tower-1 .fill-4[b-4u5k9ihl8a] { animation-delay: 0.9s; }

.tower-2 .fill-1[b-4u5k9ihl8a] { animation-delay: 0.2s; }
.tower-2 .fill-2[b-4u5k9ihl8a] { animation-delay: 0.5s; }
.tower-2 .fill-3[b-4u5k9ihl8a] { animation-delay: 0.8s; }
.tower-2 .fill-4[b-4u5k9ihl8a] { animation-delay: 1.1s; }

.tower-3 .fill-1[b-4u5k9ihl8a] { animation-delay: 0.4s; }
.tower-3 .fill-2[b-4u5k9ihl8a] { animation-delay: 0.7s; }
.tower-3 .fill-3[b-4u5k9ihl8a] { animation-delay: 1s; }
.tower-3 .fill-4[b-4u5k9ihl8a] { animation-delay: 1.3s; }

.database-icon[b-4u5k9ihl8a] {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 15;
}

.icon-body[b-4u5k9ihl8a] {
    font-size: 16px;
    animation: iconFloat-b-4u5k9ihl8a 2s ease-in-out infinite;
}

.icon-glow[b-4u5k9ihl8a] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: color-mix(in srgb, var(--vg-energy-500) 30%, transparent);
    border-radius: 50%;
    animation: iconGlow-b-4u5k9ihl8a 2s ease-in-out infinite;
}

@keyframes powerBlink-b-4u5k9ihl8a {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes ventPulse-b-4u5k9ihl8a {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes ledBlink-b-4u5k9ihl8a {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes activityPulse-b-4u5k9ihl8a {
    0%, 100% { width: 4px; opacity: 0.3; }
    50% { width: 8px; opacity: 1; }
}

@keyframes particleSpiral-b-4u5k9ihl8a {
    0% { 
        opacity: 0; 
        transform: rotate(0deg) translateX(20px) rotate(0deg) scale(0.8);
    }
    20% { 
        opacity: 1; 
        transform: rotate(90deg) translateX(25px) rotate(-90deg) scale(1);
    }
    80% { 
        opacity: 1; 
        transform: rotate(270deg) translateX(30px) rotate(-270deg) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: rotate(360deg) translateX(35px) rotate(-360deg) scale(0.8);
    }
}

@keyframes storageWave-b-4u5k9ihl8a {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes levelFill-b-4u5k9ihl8a {
    0%, 100% { height: 20%; }
    50% { height: 80%; }
}

@keyframes iconFloat-b-4u5k9ihl8a {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes iconGlow-b-4u5k9ihl8a {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% { 
        opacity: 0.8; 
        transform: translate(-50%, -50%) scale(1.2);
    }
}
/* /Components/Loading/Loaders/DownloadingLoader.razor.rz.scp.css */
.download-container[b-t5618w2764] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 8px;
}

.cloud-source[b-t5618w2764] {
    position: relative;
    z-index: 5;
}

.cloud-body[b-t5618w2764] {
    position: relative;
    width: 32px;
    height: 20px;
}

.cloud-puff[b-t5618w2764] {
    position: absolute;
    background: var(--vg-void-800);
    border: 1px solid var(--vg-glass-border);
    border-radius: 50%;
    animation: cloudFloat-b-t5618w2764 3s ease-in-out infinite;
}

.puff-1[b-t5618w2764] {
    width: 14px;
    height: 14px;
    top: 3px;
    left: 0;
    animation-delay: 0s;
}

.puff-2[b-t5618w2764] {
    width: 18px;
    height: 18px;
    top: 0;
    left: 7px;
    animation-delay: 0.5s;
}

.puff-3[b-t5618w2764] {
    width: 12px;
    height: 12px;
    top: 5px;
    right: 0;
    animation-delay: 1s;
}

.cloud-center[b-t5618w2764] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.source-icon[b-t5618w2764] {
    font-size: 10px;
    animation: sourcePulse-b-t5618w2764 2s ease-in-out infinite;
}

.download-indicator[b-t5618w2764] {
    display: flex;
    gap: 1px;
}

.indicator-light[b-t5618w2764] {
    width: 2px;
    height: 2px;
    background: var(--vg-energy-400);
    border-radius: 50%;
    animation: indicatorBlink-b-t5618w2764 1s ease-in-out infinite;
}

.light-1[b-t5618w2764] { animation-delay: 0s; }
.light-2[b-t5618w2764] { animation-delay: 0.5s; }

.download-stream[b-t5618w2764] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stream-particles[b-t5618w2764] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle[b-t5618w2764] {
    position: absolute;
    font-size: 8px;
    animation: particleFall-b-t5618w2764 2.5s ease-in-out infinite;
}

.particle-1[b-t5618w2764] { top: 20%; left: 35%; animation-delay: 0s; }
.particle-2[b-t5618w2764] { top: 15%; left: 45%; animation-delay: 0.6s; }
.particle-3[b-t5618w2764] { top: 25%; left: 40%; animation-delay: 1.2s; }
.particle-4[b-t5618w2764] { top: 10%; left: 50%; animation-delay: 1.8s; }

.progress-stream[b-t5618w2764] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stream-segment[b-t5618w2764] {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, var(--vg-energy-500), transparent);
    animation: streamFlow-b-t5618w2764 1.5s linear infinite;
}

.seg-1[b-t5618w2764] { 
    top: 30%; 
    left: 48%; 
    height: 20px; 
    animation-delay: 0s; 
}

.seg-2[b-t5618w2764] { 
    top: 40%; 
    left: 50%; 
    height: 25px; 
    animation-delay: 0.5s; 
}

.seg-3[b-t5618w2764] { 
    top: 35%; 
    left: 52%; 
    height: 22px; 
    animation-delay: 1s; 
}

.download-waves[b-t5618w2764] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave[b-t5618w2764] {
    position: absolute;
    border: 1px solid var(--vg-energy-300);
    border-radius: 50%;
    opacity: 0;
    animation: downloadWave-b-t5618w2764 2s ease-out infinite;
}

.wave-1[b-t5618w2764] {
    width: 20px;
    height: 20px;
    top: 25%;
    left: 40%;
    animation-delay: 0s;
}

.wave-2[b-t5618w2764] {
    width: 16px;
    height: 16px;
    top: 35%;
    left: 45%;
    animation-delay: 1s;
}

.target-device[b-t5618w2764] {
    position: relative;
    z-index: 5;
}

.device-screen[b-t5618w2764] {
    width: 24px;
    height: 18px;
    background: var(--vg-void-900);
    border: 1px solid var(--vg-glass-border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 8px color-mix(in srgb, var(--vg-glass-border) 40%, transparent);
}

.download-progress[b-t5618w2764] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.progress-bar[b-t5618w2764] {
    width: 16px;
    height: 2px;
    background: var(--vg-void-800);
    border-radius: 1px;
    overflow: hidden;
}

.progress-fill[b-t5618w2764] {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--vg-energy-400), var(--vg-energy-500));
    animation: downloadProgress-b-t5618w2764 2.5s ease-in-out infinite;
    border-radius: 1px;
}

.progress-dots[b-t5618w2764] {
    display: flex;
    gap: 1px;
}

.dot[b-t5618w2764] {
    width: 2px;
    height: 2px;
    background: var(--vg-energy-400);
    border-radius: 50%;
    animation: dotPulse-b-t5618w2764 1.5s ease-in-out infinite;
}

.dot-1[b-t5618w2764] { animation-delay: 0s; }
.dot-2[b-t5618w2764] { animation-delay: 0.3s; }
.dot-3[b-t5618w2764] { animation-delay: 0.6s; }

.device-stand[b-t5618w2764] {
    width: 16px;
    height: 3px;
    background: var(--vg-glass-border);
    border-radius: 1px;
    margin: 1px auto;
}

.device-base[b-t5618w2764] {
    width: 20px;
    height: 2px;
    background: var(--vg-void-700);
    border-radius: 1px;
}

.completion-checks[b-t5618w2764] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.check[b-t5618w2764] {
    position: absolute;
    font-size: 6px;
    color: var(--vg-energy-300);
    animation: checkAppear-b-t5618w2764 2s ease-out infinite;
}

.check-1[b-t5618w2764] { bottom: 25%; right: 25%; animation-delay: 0.5s; }
.check-2[b-t5618w2764] { bottom: 35%; right: 20%; animation-delay: 1.2s; }
.check-3[b-t5618w2764] { bottom: 30%; right: 30%; animation-delay: 1.9s; }

@keyframes cloudFloat-b-t5618w2764 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes sourcePulse-b-t5618w2764 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes indicatorBlink-b-t5618w2764 {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes particleFall-b-t5618w2764 {
    0% { 
        opacity: 0; 
        transform: translateY(0) scale(0.8);
    }
    20% { 
        opacity: 1; 
        transform: translateY(10px) scale(1);
    }
    80% { 
        opacity: 1; 
        transform: translateY(25px) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translateY(40px) scale(0.8);
    }
}

@keyframes streamFlow-b-t5618w2764 {
    0% { 
        opacity: 0; 
        transform: scaleY(0);
    }
    20% { 
        opacity: 1; 
        transform: scaleY(1);
    }
    80% { 
        opacity: 1; 
        transform: scaleY(1);
    }
    100% { 
        opacity: 0; 
        transform: scaleY(0);
    }
}

@keyframes downloadWave-b-t5618w2764 {
    0% { 
        opacity: 0; 
        transform: scale(0.5);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    100% { 
        opacity: 0; 
        transform: scale(1.5);
    }
}

@keyframes downloadProgress-b-t5618w2764 {
    0%, 100% { width: 10%; }
    50% { width: 70%; }
}

@keyframes dotPulse-b-t5618w2764 {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes checkAppear-b-t5618w2764 {
    0% { 
        opacity: 0; 
        transform: scale(0.5) rotate(-180deg);
    }
    50% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg);
    }
    100% { 
        opacity: 0; 
        transform: scale(1.5) rotate(180deg);
    }
}
/* /Components/Loading/Loaders/ProcessingLoader.razor.rz.scp.css */
.processing-container[b-clv3z79mc4] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cpu-unit[b-clv3z79mc4] {
    position: relative;
    width: 60px;
    height: 60px;
}

.cpu-base[b-clv3z79mc4] {
    width: 100%;
    height: 45px;
    background: linear-gradient(135deg, var(--vg-void-800), var(--vg-void-900));
    border: 2px solid var(--vg-glass-border);
    border-radius: 8px;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.cpu-cores[b-clv3z79mc4] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 4px;
    height: 100%;
}

.core[b-clv3z79mc4] {
    position: relative;
    width: 20px;
    height: 20px;
}

.core-center[b-clv3z79mc4] {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, var(--vg-void-900), var(--vg-void-800));
    border: 1px solid var(--vg-energy-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow: 0 0 8px color-mix(in srgb, var(--vg-energy-500) 60%, transparent);
}

.core-gear[b-clv3z79mc4] {
    font-size: 8px;
    animation: gearSpin-b-clv3z79mc4 2s linear infinite;
}

.core-ring[b-clv3z79mc4] {
    position: absolute;
    border: 1px solid var(--vg-energy-400);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-outer[b-clv3z79mc4] {
    width: 20px;
    height: 20px;
    animation: ringGlow-b-clv3z79mc4 1.5s ease-in-out infinite;
}

.ring-inner[b-clv3z79mc4] {
    width: 12px;
    height: 12px;
    animation: ringGlow-b-clv3z79mc4 1.5s ease-in-out infinite 0.75s;
}

.core-1 .core-ring[b-clv3z79mc4] {
    border-color: var(--vg-energy-500);
}

.core-2 .core-ring[b-clv3z79mc4] {
    border-color: var(--vg-energy-400);
    animation-direction: reverse;
}

.cpu-heat-sink[b-clv3z79mc4] {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 8px;
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.fin[b-clv3z79mc4] {
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--vg-glass-border), var(--vg-void-700));
    border-radius: 1px;
    animation: heatPulse-b-clv3z79mc4 2s ease-in-out infinite;
}

.fin-1[b-clv3z79mc4] { animation-delay: 0s; }
.fin-2[b-clv3z79mc4] { animation-delay: 0.2s; }
.fin-3[b-clv3z79mc4] { animation-delay: 0.4s; }
.fin-4[b-clv3z79mc4] { animation-delay: 0.6s; }
.fin-5[b-clv3z79mc4] { animation-delay: 0.8s; }
.fin-6[b-clv3z79mc4] { animation-delay: 1s; }

.cpu-socket[b-clv3z79mc4] {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
}

.pin[b-clv3z79mc4] {
    width: 2px;
    height: 100%;
    background: var(--vg-glass-border);
    border-radius: 1px;
    animation: pinPulse-b-clv3z79mc4 1s ease-in-out infinite;
}

.pin-1[b-clv3z79mc4] { animation-delay: 0s; }
.pin-2[b-clv3z79mc4] { animation-delay: 0.25s; }
.pin-3[b-clv3z79mc4] { animation-delay: 0.5s; }
.pin-4[b-clv3z79mc4] { animation-delay: 0.75s; }

.data-particles[b-clv3z79mc4] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle[b-clv3z79mc4] {
    position: absolute;
    font-size: 10px;
    animation: particleFloat-b-clv3z79mc4 3s ease-in-out infinite;
}

.particle-1[b-clv3z79mc4] { top: 10%; left: 20%; animation-delay: 0s; }
.particle-2[b-clv3z79mc4] { top: 20%; right: 15%; animation-delay: 0.5s; }
.particle-3[b-clv3z79mc4] { bottom: 15%; right: 20%; animation-delay: 1s; }
.particle-4[b-clv3z79mc4] { bottom: 10%; left: 15%; animation-delay: 1.5s; }
.particle-5[b-clv3z79mc4] { top: 50%; left: 5%; animation-delay: 2s; }
.particle-6[b-clv3z79mc4] { top: 50%; right: 5%; animation-delay: 2.5s; }

.processing-waves[b-clv3z79mc4] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave[b-clv3z79mc4] {
    position: absolute;
    border: 1px solid var(--vg-energy-300);
    border-radius: 50%;
    opacity: 0;
    animation: processWave-b-clv3z79mc4 2s ease-out infinite;
}

.wave-1[b-clv3z79mc4] {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2[b-clv3z79mc4] {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.wave-3[b-clv3z79mc4] {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

@keyframes gearSpin-b-clv3z79mc4 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringGlow-b-clv3z79mc4 {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes heatPulse-b-clv3z79mc4 {
    0%, 100% { 
        background: linear-gradient(180deg, var(--vg-glass-border), var(--vg-void-700));
        opacity: 0.7;
    }
    50% { 
        background: linear-gradient(180deg, var(--vg-energy-400), var(--vg-void-600));
        opacity: 1;
    }
}

@keyframes pinPulse-b-clv3z79mc4 {
    0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes particleFloat-b-clv3z79mc4 {
    0% { 
        opacity: 0; 
        transform: translateY(0) scale(0.8);
    }
    20% { 
        opacity: 1; 
        transform: translateY(-10px) scale(1);
    }
    80% { 
        opacity: 1; 
        transform: translateY(-20px) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translateY(-30px) scale(0.8);
    }
}

@keyframes processWave-b-clv3z79mc4 {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(1.5);
    }
}
/* /Components/Loading/Loaders/ProgressLoader.razor.rz.scp.css */
.progress-loader-container[b-g0rze4f3wl] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.energy-core[b-g0rze4f3wl] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-center[b-g0rze4f3wl] {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--vg-void-900), var(--vg-void-800));
    border: 2px solid var(--vg-glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 
        0 0 20px color-mix(in srgb, var(--vg-glass-border) 60%, transparent),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.energy-bolt[b-g0rze4f3wl] {
    font-size: 20px;
    color: var(--vg-energy-500);
    animation: boltPulse-b-g0rze4f3wl 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px color-mix(in srgb, var(--vg-energy-500) 80%, transparent);
}

.energy-rings[b-g0rze4f3wl] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring[b-g0rze4f3wl] {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-outer[b-g0rze4f3wl] {
    width: 100px;
    height: 100px;
    border-top-color: var(--vg-energy-500);
    border-right-color: var(--vg-energy-500);
    animation: ringSpin-b-g0rze4f3wl 2s linear infinite;
    box-shadow: 
        0 0 15px color-mix(in srgb, var(--vg-energy-500) 50%, transparent),
        inset 0 0 10px color-mix(in srgb, var(--vg-energy-500) 20%, transparent);
}

.ring-middle[b-g0rze4f3wl] {
    width: 80px;
    height: 80px;
    border-bottom-color: var(--vg-energy-400);
    border-left-color: var(--vg-energy-400);
    animation: ringSpin-b-g0rze4f3wl 2.5s linear infinite reverse;
    box-shadow: 
        0 0 12px color-mix(in srgb, var(--vg-energy-400) 40%, transparent),
        inset 0 0 8px color-mix(in srgb, var(--vg-energy-400) 15%, transparent);
}

.ring-inner[b-g0rze4f3wl] {
    width: 60px;
    height: 60px;
    border-top-color: var(--vg-energy-300);
    border-right-color: var(--vg-energy-300);
    animation: ringSpin-b-g0rze4f3wl 3s linear infinite;
    box-shadow: 
        0 0 8px color-mix(in srgb, var(--vg-energy-300) 30%, transparent),
        inset 0 0 6px color-mix(in srgb, var(--vg-energy-300) 10%, transparent);
}

.energy-particles[b-g0rze4f3wl] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle[b-g0rze4f3wl] {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--vg-energy-500);
    border-radius: 50%;
    box-shadow: 0 0 6px color-mix(in srgb, var(--vg-energy-500) 80%, transparent);
}

.particle-1[b-g0rze4f3wl] {
    top: 10%;
    left: 50%;
    animation: particleOrbit1-b-g0rze4f3wl 4s linear infinite;
}

.particle-2[b-g0rze4f3wl] {
    top: 50%;
    right: 10%;
    animation: particleOrbit2-b-g0rze4f3wl 4s linear infinite 0.5s;
}

.particle-3[b-g0rze4f3wl] {
    bottom: 10%;
    left: 50%;
    animation: particleOrbit3-b-g0rze4f3wl 4s linear infinite 1s;
}

.particle-4[b-g0rze4f3wl] {
    top: 50%;
    left: 10%;
    animation: particleOrbit4-b-g0rze4f3wl 4s linear infinite 1.5s;
}

.particle-5[b-g0rze4f3wl] {
    top: 25%;
    right: 25%;
    animation: particleOrbit5-b-g0rze4f3wl 3s linear infinite 0.25s;
}

.particle-6[b-g0rze4f3wl] {
    bottom: 25%;
    right: 25%;
    animation: particleOrbit6-b-g0rze4f3wl 3s linear infinite 0.75s;
}

.particle-7[b-g0rze4f3wl] {
    bottom: 25%;
    left: 25%;
    animation: particleOrbit7-b-g0rze4f3wl 3s linear infinite 1.25s;
}

.particle-8[b-g0rze4f3wl] {
    top: 25%;
    left: 25%;
    animation: particleOrbit8-b-g0rze4f3wl 3s linear infinite 1.75s;
}

@keyframes boltPulse-b-g0rze4f3wl {
    0%, 100% { 
        transform: scale(1); 
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.2); 
        filter: brightness(1.5);
    }
}

@keyframes ringSpin-b-g0rze4f3wl {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleOrbit1-b-g0rze4f3wl {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(50px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(50px) rotate(-360deg); opacity: 0; }
}

@keyframes particleOrbit2-b-g0rze4f3wl {
    0% { transform: translate(50%, -50%) rotate(0deg) translateX(50px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(50%, -50%) rotate(360deg) translateX(50px) rotate(-360deg); opacity: 0; }
}

@keyframes particleOrbit3-b-g0rze4f3wl {
    0% { transform: translate(-50%, 50%) rotate(0deg) translateX(50px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(-50%, 50%) rotate(360deg) translateX(50px) rotate(-360deg); opacity: 0; }
}

@keyframes particleOrbit4-b-g0rze4f3wl {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(50px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(50px) rotate(-360deg); opacity: 0; }
}

@keyframes particleOrbit5-b-g0rze4f3wl {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(40px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(40px) rotate(-360deg); opacity: 0; }
}

@keyframes particleOrbit6-b-g0rze4f3wl {
    0% { transform: translate(50%, 50%) rotate(0deg) translateX(40px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translate(50%, 50%) rotate(360deg) translateX(40px) rotate(-360deg); opacity: 0; }
}

@keyframes particleOrbit7-b-g0rze4f3wl {
    0% { transform: translate(-50%, 50%) rotate(0deg) translateX(40px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translate(-50%, 50%) rotate(360deg) translateX(40px) rotate(-360deg); opacity: 0; }
}

@keyframes particleOrbit8-b-g0rze4f3wl {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(40px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(40px) rotate(-360deg); opacity: 0; }
}
/* /Components/Loading/Loaders/SearchingLoader.razor.rz.scp.css */
.search-container[b-nazszqw25z] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.magnifier-tool[b-nazszqw25z] {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: magnifierScan-b-nazszqw25z 3s ease-in-out infinite;
    z-index: 10;
}

.magnifier-handle[b-nazszqw25z] {
    position: absolute;
    width: 12px;
    height: 3px;
    background: var(--vg-glass-border);
    border-radius: 2px;
    bottom: -1px;
    right: -1px;
    transform: rotate(45deg);
    transform-origin: center;
}

.magnifier-ring[b-nazszqw25z] {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid var(--vg-glass-border);
    border-radius: 50%;
    top: 0;
    left: 0;
    box-shadow: 0 0 10px color-mix(in srgb, var(--vg-glass-border) 50%, transparent);
}

.ring-glass[b-nazszqw25z] {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle, color-mix(in srgb, var(--vg-void-900) 80%, transparent), var(--vg-void-800));
}

.glass-reflection[b-nazszqw25z] {
    position: absolute;
    width: 8px;
    height: 8px;
    background: color-mix(in srgb, var(--vg-glass-highlight) 60%, transparent);
    border-radius: 50%;
    top: 4px;
    left: 4px;
    animation: reflectionShine-b-nazszqw25z 2s ease-in-out infinite;
}

.search-scan[b-nazszqw25z] {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--vg-energy-500);
    top: 50%;
    transform: translateY(-50%);
    animation: scanMove-b-nazszqw25z 1s linear infinite;
}

.search-area[b-nazszqw25z] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.search-results[b-nazszqw25z] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.result[b-nazszqw25z] {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: resultAppear-b-nazszqw25z 3s ease-in-out infinite;
}

.result-1[b-nazszqw25z] {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.result-2[b-nazszqw25z] {
    top: 60%;
    left: 65%;
    animation-delay: 1s;
}

.result-3[b-nazszqw25z] {
    top: 40%;
    left: 15%;
    animation-delay: 2s;
}

.result-icon[b-nazszqw25z] {
    font-size: 10px;
    animation: iconPulse-b-nazszqw25z 1s ease-in-out infinite;
}

.result-text[b-nazszqw25z] {
    font-size: 4px;
    color: var(--vg-energy-400);
    font-weight: bold;
    animation: textFade-b-nazszqw25z 1s ease-in-out infinite;
}

.search-waves[b-nazszqw25z] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave[b-nazszqw25z] {
    position: absolute;
    border: 1px solid var(--vg-energy-300);
    border-radius: 50%;
    opacity: 0;
    animation: searchWave-b-nazszqw25z 2s ease-out infinite;
}

.wave-1[b-nazszqw25z] {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2[b-nazszqw25z] {
    width: 35px;
    height: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.7s;
}

.wave-3[b-nazszqw25z] {
    width: 25px;
    height: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.4s;
}

.scan-lines[b-nazszqw25z] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.scan-line[b-nazszqw25z] {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vg-energy-400), transparent);
    animation: lineScan-b-nazszqw25z 2s linear infinite;
}

.line-1[b-nazszqw25z] {
    top: 30%;
    width: 60%;
    left: 20%;
    animation-delay: 0s;
}

.line-2[b-nazszqw25z] {
    top: 50%;
    width: 80%;
    left: 10%;
    animation-delay: 0.5s;
}

.line-3[b-nazszqw25z] {
    top: 70%;
    width: 70%;
    left: 15%;
    animation-delay: 1s;
}

.search-particles[b-nazszqw25z] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle[b-nazszqw25z] {
    position: absolute;
    font-size: 8px;
    animation: particleSparkle-b-nazszqw25z 2.5s ease-in-out infinite;
}

.particle-1[b-nazszqw25z] { top: 25%; left: 35%; animation-delay: 0s; }
.particle-2[b-nazszqw25z] { top: 45%; right: 30%; animation-delay: 0.5s; }
.particle-3[b-nazszqw25z] { bottom: 35%; left: 25%; animation-delay: 1s; }
.particle-4[b-nazszqw25z] { bottom: 25%; right: 35%; animation-delay: 1.5s; }
.particle-5[b-nazszqw25z] { top: 60%; left: 60%; animation-delay: 2s; }

.target-items[b-nazszqw25z] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.target[b-nazszqw25z] {
    position: absolute;
    font-size: 8px;
    opacity: 0.3;
    animation: targetPulse-b-nazszqw25z 3s ease-in-out infinite;
}

.target-1[b-nazszqw25z] { top: 15%; left: 70%; animation-delay: 0s; }
.target-2[b-nazszqw25z] { top: 75%; left: 25%; animation-delay: 0.8s; }
.target-3[b-nazszqw25z] { top: 30%; right: 20%; animation-delay: 1.6s; }
.target-4[b-nazszqw25z] { bottom: 20%; right: 25%; animation-delay: 2.4s; }

@keyframes magnifierScan-b-nazszqw25z {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(-30deg) scale(1); 
    }
    25% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1.1); 
    }
    50% { 
        transform: translate(-50%, -50%) rotate(30deg) scale(1); 
    }
    75% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1.1); 
    }
}

@keyframes reflectionShine-b-nazszqw25z {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes scanMove-b-nazszqw25z {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes resultAppear-b-nazszqw25z {
    0% { 
        opacity: 0; 
        transform: scale(0) rotate(0deg);
    }
    20% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg);
    }
    40% { 
        opacity: 1; 
        transform: scale(1) rotate(360deg);
    }
    100% { 
        opacity: 0; 
        transform: scale(0.8) rotate(540deg);
    }
}

@keyframes iconPulse-b-nazszqw25z {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes textFade-b-nazszqw25z {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes searchWave-b-nazszqw25z {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes lineScan-b-nazszqw25z {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

@keyframes particleSparkle-b-nazszqw25z {
    0% { 
        opacity: 0; 
        transform: scale(0.8) rotate(0deg);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg);
    }
    100% { 
        opacity: 0; 
        transform: scale(0.8) rotate(360deg);
    }
}

@keyframes targetPulse-b-nazszqw25z {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}
/* /Components/Loading/Loaders/SyncingLoader.razor.rz.scp.css */
.syncing-container[b-rv4uc6qfr6] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sync-hub[b-rv4uc6qfr6] {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-core[b-rv4uc6qfr6] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-icon[b-rv4uc6qfr6] {
    font-size: 16px;
    animation: hubSpin-b-rv4uc6qfr6 2s linear infinite;
    z-index: 5;
}

.core-rings[b-rv4uc6qfr6] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring[b-rv4uc6qfr6] {
    position: absolute;
    border: 1px solid var(--vg-energy-400);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-outer[b-rv4uc6qfr6] {
    width: 40px;
    height: 40px;
    animation: ringExpand-b-rv4uc6qfr6 2s ease-in-out infinite;
}

.ring-middle[b-rv4uc6qfr6] {
    width: 30px;
    height: 30px;
    animation: ringExpand-b-rv4uc6qfr6 2s ease-in-out infinite 0.5s;
}

.ring-inner[b-rv4uc6qfr6] {
    width: 20px;
    height: 20px;
    animation: ringExpand-b-rv4uc6qfr6 2s ease-in-out infinite 1s;
}

.hub-ports[b-rv4uc6qfr6] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.port[b-rv4uc6qfr6] {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--vg-energy-500);
    border-radius: 50%;
    animation: portPulse-b-rv4uc6qfr6 1.5s ease-in-out infinite;
}

.port-1[b-rv4uc6qfr6] { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.port-2[b-rv4uc6qfr6] { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.3s; }
.port-3[b-rv4uc6qfr6] { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.6s; }
.port-4[b-rv4uc6qfr6] { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.9s; }

.sync-devices[b-rv4uc6qfr6] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.device[b-rv4uc6qfr6] {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.device-1[b-rv4uc6qfr6] { top: 15%; left: 15%; }
.device-2[b-rv4uc6qfr6] { top: 15%; right: 15%; }
.device-3[b-rv4uc6qfr6] { bottom: 15%; left: 15%; }
.device-4[b-rv4uc6qfr6] { bottom: 15%; right: 15%; }

.device-icon[b-rv4uc6qfr6] {
    font-size: 10px;
    animation: deviceFloat-b-rv4uc6qfr6 3s ease-in-out infinite;
}

.device-1 .device-icon[b-rv4uc6qfr6] { animation-delay: 0s; }
.device-2 .device-icon[b-rv4uc6qfr6] { animation-delay: 0.5s; }
.device-3 .device-icon[b-rv4uc6qfr6] { animation-delay: 1s; }
.device-4 .device-icon[b-rv4uc6qfr6] { animation-delay: 1.5s; }

.device-status[b-rv4uc6qfr6] {
    width: 6px;
    height: 2px;
    background: var(--vg-void-700);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.status-1[b-rv4uc6qfr6]::after { animation: statusFill-b-rv4uc6qfr6 2s ease-in-out infinite 0s; }
.status-2[b-rv4uc6qfr6]::after { animation: statusFill-b-rv4uc6qfr6 2s ease-in-out infinite 0.5s; }
.status-3[b-rv4uc6qfr6]::after { animation: statusFill-b-rv4uc6qfr6 2s ease-in-out infinite 1s; }
.status-4[b-rv4uc6qfr6]::after { animation: statusFill-b-rv4uc6qfr6 2s ease-in-out infinite 1.5s; }

.device-status[b-rv4uc6qfr6]::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--vg-energy-500);
    border-radius: 1px;
}

.sync-arrows[b-rv4uc6qfr6] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.arrow-flow[b-rv4uc6qfr6] {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.flow-1[b-rv4uc6qfr6] { top: 25%; left: 35%; }
.flow-2[b-rv4uc6qfr6] { top: 25%; right: 35%; }
.flow-3[b-rv4uc6qfr6] { bottom: 25%; left: 35%; }
.flow-4[b-rv4uc6qfr6] { bottom: 25%; right: 35%; }

.arrow[b-rv4uc6qfr6] {
    font-size: 8px;
    color: var(--vg-energy-400);
    animation: arrowFlow-b-rv4uc6qfr6 2s ease-in-out infinite;
}

.arrow-out[b-rv4uc6qfr6] { animation-delay: 0s; }
.arrow-in[b-rv4uc6qfr6] { animation-delay: 1s; }

.sync-waves[b-rv4uc6qfr6] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave[b-rv4uc6qfr6] {
    position: absolute;
    border: 1px solid var(--vg-energy-300);
    border-radius: 50%;
    opacity: 0;
    animation: syncWave-b-rv4uc6qfr6 3s ease-out infinite;
}

.wave-1[b-rv4uc6qfr6] {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2[b-rv4uc6qfr6] {
    width: 45px;
    height: 45px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.wave-3[b-rv4uc6qfr6] {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.data-streams[b-rv4uc6qfr6] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stream[b-rv4uc6qfr6] {
    position: absolute;
    font-size: 6px;
    animation: streamFlow-b-rv4uc6qfr6 2.5s ease-in-out infinite;
}

.stream-1[b-rv4uc6qfr6] { 
    top: 30%; 
    left: 25%; 
    animation-delay: 0s; 
}

.stream-2[b-rv4uc6qfr6] { 
    top: 20%; 
    right: 30%; 
    animation-delay: 0.6s; 
}

.stream-3[b-rv4uc6qfr6] { 
    bottom: 25%; 
    left: 30%; 
    animation-delay: 1.2s; 
}

.stream-4[b-rv4uc6qfr6] { 
    bottom: 20%; 
    right: 25%; 
    animation-delay: 1.8s; 
}

@keyframes hubSpin-b-rv4uc6qfr6 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringExpand-b-rv4uc6qfr6 {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes portPulse-b-rv4uc6qfr6 {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes deviceFloat-b-rv4uc6qfr6 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes statusFill-b-rv4uc6qfr6 {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

@keyframes arrowFlow-b-rv4uc6qfr6 {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(0);
    }
    50% { 
        opacity: 1; 
        transform: translateX(3px);
    }
}

@keyframes syncWave-b-rv4uc6qfr6 {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes streamFlow-b-rv4uc6qfr6 {
    0% { 
        opacity: 0; 
        transform: translate(0, 0) scale(0.8);
    }
    20% { 
        opacity: 1; 
        transform: translate(10px, -5px) scale(1);
    }
    80% { 
        opacity: 1; 
        transform: translate(20px, -10px) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translate(30px, -15px) scale(0.8);
    }
}
/* /Components/Loading/Loaders/UploadingLoader.razor.rz.scp.css */
.upload-container[b-hgvweegppg] {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 8px;
}

.device[b-hgvweegppg] {
    position: relative;
    z-index: 5;
}

.device-screen[b-hgvweegppg] {
    width: 24px;
    height: 18px;
    background: var(--vg-void-900);
    border: 1px solid var(--vg-glass-border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 8px color-mix(in srgb, var(--vg-glass-border) 40%, transparent);
}

.upload-progress[b-hgvweegppg] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.progress-bar[b-hgvweegppg] {
    width: 16px;
    height: 2px;
    background: var(--vg-void-800);
    border-radius: 1px;
    overflow: hidden;
}

.progress-fill[b-hgvweegppg] {
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, var(--vg-energy-500), var(--vg-energy-400));
    animation: uploadProgress-b-hgvweegppg 2s ease-in-out infinite;
    border-radius: 1px;
}

.progress-text[b-hgvweegppg] {
    font-size: 8px;
    color: var(--vg-energy-500);
    animation: uploadBounce-b-hgvweegppg 1s ease-in-out infinite;
}

.device-stand[b-hgvweegppg] {
    width: 16px;
    height: 3px;
    background: var(--vg-glass-border);
    border-radius: 1px;
    margin: 1px auto;
}

.device-base[b-hgvweegppg] {
    width: 20px;
    height: 2px;
    background: var(--vg-void-700);
    border-radius: 1px;
}

.upload-path[b-hgvweegppg] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.path-line[b-hgvweegppg] {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, var(--vg-energy-500), transparent);
    animation: pathFlow-b-hgvweegppg 1.5s linear infinite;
}

.upload-particles[b-hgvweegppg] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle[b-hgvweegppg] {
    position: absolute;
    font-size: 8px;
    animation: particleRise-b-hgvweegppg 2s ease-in-out infinite;
}

.particle-1[b-hgvweegppg] { top: 60%; left: 35%; animation-delay: 0s; }
.particle-2[b-hgvweegppg] { top: 50%; left: 40%; animation-delay: 0.5s; }
.particle-3[b-hgvweegppg] { top: 40%; left: 45%; animation-delay: 1s; }
.particle-4[b-hgvweegppg] { top: 30%; left: 50%; animation-delay: 1.5s; }

.upload-arrows[b-hgvweegppg] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.arrow[b-hgvweegppg] {
    position: absolute;
    font-size: 6px;
    color: var(--vg-energy-500);
    animation: arrowFloat-b-hgvweegppg 1.5s ease-in-out infinite;
}

.arrow-1[b-hgvweegppg] { top: 55%; left: 45%; animation-delay: 0s; }
.arrow-2[b-hgvweegppg] { top: 45%; left: 50%; animation-delay: 0.5s; }
.arrow-3[b-hgvweegppg] { top: 35%; left: 55%; animation-delay: 1s; }

.cloud-server[b-hgvweegppg] {
    position: relative;
    z-index: 5;
}

.cloud-body[b-hgvweegppg] {
    position: relative;
    width: 36px;
    height: 24px;
}

.cloud-puff[b-hgvweegppg] {
    position: absolute;
    background: var(--vg-void-800);
    border: 1px solid var(--vg-glass-border);
    border-radius: 50%;
    animation: cloudFloat-b-hgvweegppg 3s ease-in-out infinite;
}

.puff-1[b-hgvweegppg] {
    width: 16px;
    height: 16px;
    top: 4px;
    left: 0;
    animation-delay: 0s;
}

.puff-2[b-hgvweegppg] {
    width: 20px;
    height: 20px;
    top: 0;
    left: 8px;
    animation-delay: 0.5s;
}

.puff-3[b-hgvweegppg] {
    width: 14px;
    height: 14px;
    top: 6px;
    right: 0;
    animation-delay: 1s;
}

.cloud-center[b-hgvweegppg] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.server-icon[b-hgvweegppg] {
    font-size: 12px;
    animation: cloudPulse-b-hgvweegppg 2s ease-in-out infinite;
}

.storage-indicator[b-hgvweegppg] {
    display: flex;
    gap: 1px;
}

.indicator-dot[b-hgvweegppg] {
    width: 2px;
    height: 2px;
    background: var(--vg-energy-400);
    border-radius: 50%;
    animation: storageBlink-b-hgvweegppg 1.5s ease-in-out infinite;
}

.dot-1[b-hgvweegppg] { animation-delay: 0s; }
.dot-2[b-hgvweegppg] { animation-delay: 0.3s; }
.dot-3[b-hgvweegppg] { animation-delay: 0.6s; }

.cloud-shadow[b-hgvweegppg] {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 4px;
    background: color-mix(in srgb, var(--vg-void-900) 80%, transparent);
    border-radius: 50%;
    filter: blur(2px);
}

.success-waves[b-hgvweegppg] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave[b-hgvweegppg] {
    position: absolute;
    font-size: 8px;
    color: var(--vg-energy-300);
    animation: successWave-b-hgvweegppg 2s ease-out infinite;
}

.wave-1[b-hgvweegppg] { top: 30%; right: 20%; animation-delay: 0s; }
.wave-2[b-hgvweegppg] { top: 50%; right: 15%; animation-delay: 0.7s; }
.wave-3[b-hgvweegppg] { top: 70%; right: 25%; animation-delay: 1.4s; }

@keyframes uploadProgress-b-hgvweegppg {
    0%, 100% { width: 20%; }
    50% { width: 80%; }
}

@keyframes uploadBounce-b-hgvweegppg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes pathFlow-b-hgvweegppg {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(1); }
}

@keyframes particleRise-b-hgvweegppg {
    0% { 
        opacity: 0; 
        transform: translateY(0) scale(0.8);
    }
    20% { 
        opacity: 1; 
        transform: translateY(-5px) scale(1);
    }
    80% { 
        opacity: 1; 
        transform: translateY(-15px) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translateY(-25px) scale(0.8);
    }
}

@keyframes arrowFloat-b-hgvweegppg {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(0);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-3px);
    }
}

@keyframes cloudFloat-b-hgvweegppg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes cloudPulse-b-hgvweegppg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes storageBlink-b-hgvweegppg {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes successWave-b-hgvweegppg {
    0% { 
        opacity: 0; 
        transform: scale(0.5);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1);
    }
    100% { 
        opacity: 0; 
        transform: scale(1.5);
    }
}
/* /Components/Pages/LoaderShowcase.razor.rz.scp.css */
.showcase-container[b-aw526gdgp9] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--vg-void-900);
    min-height: 100vh;
}

.showcase-header[b-aw526gdgp9] {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-title[b-aw526gdgp9] {
    font-size: 48px;
    color: var(--vg-text-primary);
    margin-bottom: 16px;
    font-weight: 700;
    text-shadow: 0 0 20px color-mix(in srgb, var(--vg-energy-500) 30%, transparent);
}

.showcase-description[b-aw526gdgp9] {
    font-size: 18px;
    color: var(--vg-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.showcase-grid[b-aw526gdgp9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.loader-card[b-aw526gdgp9] {
    background: var(--vg-void-800);
    border: 2px solid var(--vg-glass-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.loader-card[b-aw526gdgp9]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vg-energy-500), var(--vg-energy-400));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.loader-card:hover[b-aw526gdgp9] {
    border-color: var(--vg-energy-500);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--vg-energy-500) 20%, transparent);
    transform: translateY(-4px);
}

.loader-card:hover[b-aw526gdgp9]::before {
    transform: scaleX(1);
}

.card-header[b-aw526gdgp9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3[b-aw526gdgp9] {
    color: var(--vg-text-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.loader-preview[b-aw526gdgp9] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vg-void-900);
    border: 1px solid var(--vg-glass-border);
    border-radius: 8px;
    font-size: 24px;
}

.mini-loader[b-aw526gdgp9] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mini-spinner[b-aw526gdgp9] {
    animation: spin 2s linear infinite;
}

.card-content[b-aw526gdgp9] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.test-btn[b-aw526gdgp9], .code-btn[b-aw526gdgp9] {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    font-size: 14px;
    padding: 10px 16px;
}

.code-section[b-aw526gdgp9] {
    margin-top: 20px;
    border-top: 1px solid var(--vg-glass-border);
    padding-top: 16px;
    animation: slideDown-b-aw526gdgp9 0.3s ease-out;
}

.code-header[b-aw526gdgp9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.code-header span[b-aw526gdgp9] {
    color: var(--vg-text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.copy-btn[b-aw526gdgp9] {
    background: var(--vg-glass-bg);
    border: 1px solid var(--vg-glass-border);
    color: var(--vg-text-secondary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover[b-aw526gdgp9] {
    background: var(--vg-glass-highlight);
    border-color: var(--vg-energy-500);
    color: var(--vg-text-primary);
}

.code-block[b-aw526gdgp9] {
    background: var(--vg-void-1000);
    border: 1px solid var(--vg-glass-border);
    border-radius: 6px;
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--vg-text-secondary);
    overflow-x: auto;
    margin: 0;
    line-height: 1.5;
}

.code-block .comment[b-aw526gdgp9] {
    color: var(--vg-text-muted);
}

.code-block .keyword[b-aw526gdgp9] {
    color: var(--vg-energy-400);
}

.code-block .string[b-aw526gdgp9] {
    color: var(--vg-energy-300);
}

.control-panel[b-aw526gdgp9] {
    background: var(--vg-void-800);
    border: 2px solid var(--vg-glass-border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.control-panel h3[b-aw526gdgp9] {
    color: var(--vg-text-primary);
    font-size: 24px;
    margin-bottom: 24px;
}

.control-buttons[b-aw526gdgp9] {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.control-buttons .vg-btn[b-aw526gdgp9] {
    min-width: 200px;
    justify-content: center;
}

.copied-toast[b-aw526gdgp9] {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--vg-energy-500);
    color: var(--vg-void-1000);
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--vg-energy-500) 40%, transparent);
    animation: slideInRight-b-aw526gdgp9 0.3s ease-out, slideOutRight-b-aw526gdgp9 0.3s ease-out 1.7s forwards;
    z-index: 10000;
}

.toast-icon[b-aw526gdgp9] {
    font-size: 18px;
}

/* Mini loader animations */
.mini-progress[b-aw526gdgp9] { animation: spin 2s linear infinite; }
.mini-datafetch[b-aw526gdgp9] { animation: dataPacketFly 2s ease-in-out infinite; }
.mini-datastore[b-aw526gdgp9] { animation: databasePulse 2s ease-in-out infinite; }
.mini-processing[b-aw526gdgp9] { animation: cpuGlow 1s ease-in-out infinite alternate; }
.mini-uploading[b-aw526gdgp9] { animation: uploadMove 2s ease-in-out infinite; }
.mini-downloading[b-aw526gdgp9] { animation: downloadMove 2s ease-in-out infinite; }
.mini-calculating[b-aw526gdgp9] { animation: calcNumberChange 2s ease-in-out infinite; }
.mini-searching[b-aw526gdgp9] { animation: searchScan 2s ease-in-out infinite; }
.mini-connecting[b-aw526gdgp9] { animation: connectionPulse 2s ease-in-out infinite; }
.mini-syncing[b-aw526gdgp9] { animation: syncArrowMove 2s ease-in-out infinite; }

@keyframes slideDown-b-aw526gdgp9 {
    from { 
        opacity: 0;
        max-height: 0;
    }
    to { 
        opacity: 1;
        max-height: 500px;
    }
}

@keyframes slideInRight-b-aw526gdgp9 {
    from { 
        opacity: 0;
        transform: translateX(100px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight-b-aw526gdgp9 {
    from { 
        opacity: 1;
        transform: translateX(0);
    }
    to { 
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-container[b-aw526gdgp9] {
        padding: 20px 16px;
    }
    
    .showcase-title[b-aw526gdgp9] {
        font-size: 36px;
    }
    
    .showcase-description[b-aw526gdgp9] {
        font-size: 16px;
    }
    
    .showcase-grid[b-aw526gdgp9] {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .loader-card[b-aw526gdgp9] {
        padding: 20px;
    }
    
    .card-header[b-aw526gdgp9] {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .card-content[b-aw526gdgp9] {
        flex-direction: column;
    }
    
    .control-buttons[b-aw526gdgp9] {
        flex-direction: column;
        align-items: center;
    }
    
    .control-buttons .vg-btn[b-aw526gdgp9] {
        width: 100%;
        max-width: 300px;
    }
    
    .copied-toast[b-aw526gdgp9] {
        right: 16px;
        left: 16px;
        top: auto;
        bottom: 20px;
    }
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.not-found-container[b-gmm174d8ma] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vg-void-1000) 0%, var(--vg-void-900) 50%, var(--vg-void-800) 100%);
    position: relative;
    overflow: hidden;
}

.not-found-content[b-gmm174d8ma] {
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.error-code[b-gmm174d8ma] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.digit[b-gmm174d8ma] {
    font-size: 120px;
    color: var(--vg-energy-500);
    text-shadow: 0 0 30px color-mix(in srgb, var(--vg-energy-500) 60%, transparent);
    animation: pulse-b-gmm174d8ma 2s ease-in-out infinite;
}

.zero-container[b-gmm174d8ma] {
    width: 120px;
    height: 120px;
    margin: 0 20px;
    position: relative;
}

.zero-outer[b-gmm174d8ma] {
    width: 100%;
    height: 100%;
    border: 8px solid var(--vg-energy-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px color-mix(in srgb, var(--vg-energy-500) 50%, transparent);
    animation: rotate-b-gmm174d8ma 20s linear infinite;
}

.zero-inner[b-gmm174d8ma] {
    width: 60%;
    height: 60%;
    border: 4px solid var(--vg-glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vg-void-900);
    position: relative;
}

.astronaut[b-gmm174d8ma] {
    width: 30px;
    height: 40px;
    position: relative;
    animation: float-b-gmm174d8ma 3s ease-in-out infinite;
}

.helmet[b-gmm174d8ma] {
    width: 16px;
    height: 16px;
    background: var(--vg-glass-highlight);
    border-radius: 50%;
    border: 2px solid var(--vg-glass-border);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px color-mix(in srgb, var(--vg-glass-highlight) 80%, transparent);
}

.body[b-gmm174d8ma] {
    width: 12px;
    height: 20px;
    background: var(--vg-text-secondary);
    border-radius: 6px;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
}

.arm[b-gmm174d8ma] {
    width: 3px;
    height: 12px;
    background: var(--vg-text-secondary);
    position: absolute;
    top: 16px;
    border-radius: 2px;
}

.arm.left[b-gmm174d8ma] {
    left: 2px;
    transform: rotate(-20deg);
    animation: wave-left-b-gmm174d8ma 2s ease-in-out infinite;
}

.arm.right[b-gmm174d8ma] {
    right: 2px;
    transform: rotate(20deg);
    animation: wave-right-b-gmm174d8ma 2s ease-in-out infinite 0.5s;
}

.leg[b-gmm174d8ma] {
    width: 3px;
    height: 10px;
    background: var(--vg-text-secondary);
    position: absolute;
    bottom: 0;
    border-radius: 2px;
}

.leg.left[b-gmm174d8ma] {
    left: 6px;
}

.leg.right[b-gmm174d8ma] {
    right: 6px;
}

.error-message[b-gmm174d8ma] {
    margin-bottom: 40px;
}

.error-title[b-gmm174d8ma] {
    font-size: 48px;
    color: var(--vg-text-primary);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 20px color-mix(in srgb, var(--vg-energy-500) 30%, transparent);
}

.error-description[b-gmm174d8ma] {
    font-size: 18px;
    color: var(--vg-text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-details[b-gmm174d8ma] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.detail-item[b-gmm174d8ma] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--vg-glass-bg);
    border: 1px solid var(--vg-glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.detail-icon[b-gmm174d8ma] {
    font-size: 20px;
}

.detail-text[b-gmm174d8ma] {
    color: var(--vg-text-muted);
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.detail-text code[b-gmm174d8ma] {
    color: var(--vg-energy-400);
    background: var(--vg-void-900);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--vg-glass-border);
}

.action-buttons[b-gmm174d8ma] {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.vg-btn[b-gmm174d8ma] {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.vg-btn[b-gmm174d8ma]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: color-mix(in srgb, var(--vg-energy-500) 20%, transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.vg-btn:hover[b-gmm174d8ma]::before {
    width: 300px;
    height: 300px;
}

.vg-btn-primary[b-gmm174d8ma] {
    background: linear-gradient(135deg, var(--vg-energy-500), var(--vg-energy-400));
    color: var(--vg-void-1000);
    border: 2px solid var(--vg-energy-500);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--vg-energy-500) 40%, transparent);
}

.vg-btn-primary:hover[b-gmm174d8ma] {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px color-mix(in srgb, var(--vg-energy-500) 60%, transparent);
}

.vg-btn-secondary[b-gmm174d8ma] {
    background: var(--vg-glass-bg);
    color: var(--vg-text-primary);
    border: 2px solid var(--vg-glass-border);
    backdrop-filter: blur(10px);
}

.vg-btn-secondary:hover[b-gmm174d8ma] {
    background: var(--vg-glass-highlight);
    border-color: var(--vg-energy-500);
    transform: translateY(-2px);
}

.vg-btn-outline[b-gmm174d8ma] {
    background: transparent;
    color: var(--vg-energy-500);
    border: 2px solid var(--vg-energy-500);
}

.vg-btn-outline:hover[b-gmm174d8ma] {
    background: var(--vg-energy-500);
    color: var(--vg-void-1000);
    transform: translateY(-2px);
}

.btn-icon[b-gmm174d8ma] {
    font-size: 18px;
}

.space-decoration[b-gmm174d8ma] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star[b-gmm174d8ma] {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle-b-gmm174d8ma 3s ease-in-out infinite;
}

.star-1[b-gmm174d8ma] {
    width: 2px;
    height: 2px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star-2[b-gmm174d8ma] {
    width: 3px;
    height: 3px;
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.star-3[b-gmm174d8ma] {
    width: 2px;
    height: 2px;
    bottom: 25%;
    left: 20%;
    animation-delay: 1s;
}

.star-4[b-gmm174d8ma] {
    width: 4px;
    height: 4px;
    top: 15%;
    right: 30%;
    animation-delay: 1.5s;
}

.star-5[b-gmm174d8ma] {
    width: 2px;
    height: 2px;
    bottom: 35%;
    right: 10%;
    animation-delay: 2s;
}

.planet[b-gmm174d8ma] {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--vg-energy-500), var(--vg-energy-400));
    border-radius: 50%;
    top: 15%;
    right: 10%;
    box-shadow: 0 0 40px color-mix(in srgb, var(--vg-energy-500) 50%, transparent);
    animation: orbit-b-gmm174d8ma 30s linear infinite;
}

.planet[b-gmm174d8ma]::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent 40%, color-mix(in srgb, var(--vg-void-900) 40%, transparent) 50%, transparent 60%);
    animation: rotate-b-gmm174d8ma 10s linear infinite;
}

@keyframes pulse-b-gmm174d8ma {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes rotate-b-gmm174d8ma {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float-b-gmm174d8ma {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes wave-left-b-gmm174d8ma {
    0%, 100% { transform: rotate(-20deg); }
    50% { transform: rotate(-40deg); }
}

@keyframes wave-right-b-gmm174d8ma {
    0%, 100% { transform: rotate(20deg); }
    50% { transform: rotate(40deg); }
}

@keyframes twinkle-b-gmm174d8ma {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes orbit-b-gmm174d8ma {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .digit[b-gmm174d8ma] {
        font-size: 80px;
    }
    
    .zero-container[b-gmm174d8ma] {
        width: 80px;
        height: 80px;
        margin: 0 10px;
    }
    
    .error-title[b-gmm174d8ma] {
        font-size: 36px;
    }
    
    .error-description[b-gmm174d8ma] {
        font-size: 16px;
    }
    
    .action-buttons[b-gmm174d8ma] {
        flex-direction: column;
        align-items: center;
    }
    
    .vg-btn[b-gmm174d8ma] {
        width: 100%;
        max-width: 280px;
    }
    
    .error-details[b-gmm174d8ma] {
        align-items: center;
    }
    
    .detail-item[b-gmm174d8ma] {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
