/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu – scoped CSS */

/* ── Font Awesome nav icon ── */
.nav-ico[b-ufruxbnp0y] {
    font-size: 0.78rem;
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
    background: color-mix(in srgb, currentColor 13%, transparent);
    border-radius: 0.35rem;
    padding: 0.18rem;
}

/* ── Section header ── */
.section-header[b-ufruxbnp0y] {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted, #7878aa);
    opacity: 0.6;
    padding: 0.9rem 0.75rem 0.35rem;
    user-select: none;
    pointer-events: none;
}

/* ── Nav link ── */
[b-ufruxbnp0y] .kai-link {
    display: flex;
    align-items: center;
    padding: 0.42rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--color-muted, #7878aa);
    text-decoration: none;
    transition: all 0.18s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

/* Left accent bar — hidden by default, shown on active */
[b-ufruxbnp0y] .kai-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 0;
    background: var(--color-accent);
    border-radius: 0 3px 3px 0;
    transition: width 0.18s ease;
}

[b-ufruxbnp0y] .kai-link:hover {
    background: color-mix(in srgb, var(--color-accent) 9%, transparent);
    color: var(--color-txt, #e8e8f5);
    transform: translateX(2px);
    border-color: color-mix(in srgb, var(--color-accent) 12%, transparent);
}

[b-ufruxbnp0y] .kai-link.active {
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--color-accent) 22%, transparent) 0%,
        color-mix(in srgb, var(--color-accent) 8%, transparent) 100%
    );
    color: var(--color-accent, #6c9fff);
    border-color: color-mix(in srgb, var(--color-accent) 30%, transparent);
    font-weight: 600;
    box-shadow: 0 2px 18px color-mix(in srgb, var(--color-accent) 15%, transparent);
}

[b-ufruxbnp0y] .kai-link.active::before {
    width: 3px;
}

[b-ufruxbnp0y] .kai-link.active .nav-ico {
    opacity: 1;
    transform: scale(1.12);
}

[b-ufruxbnp0y] .kai-link .nav-ico { transition: opacity 0.18s, transform 0.18s; }
[b-ufruxbnp0y] .kai-link:hover .nav-ico { opacity: 1; }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-7xt9jophmw],
.components-reconnect-repeated-attempt-visible[b-7xt9jophmw],
.components-reconnect-failed-visible[b-7xt9jophmw],
.components-pause-visible[b-7xt9jophmw],
.components-resume-failed-visible[b-7xt9jophmw],
.components-rejoining-animation[b-7xt9jophmw] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-retrying[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-failed[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-7xt9jophmw] {
    display: block;
}


#components-reconnect-modal[b-7xt9jophmw] {
    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-7xt9jophmw 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-7xt9jophmw 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-7xt9jophmw 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-7xt9jophmw]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-7xt9jophmw 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-7xt9jophmw {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-7xt9jophmw {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-7xt9jophmw {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-7xt9jophmw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-7xt9jophmw] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-7xt9jophmw] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-7xt9jophmw] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-7xt9jophmw] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-7xt9jophmw] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-7xt9jophmw] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-7xt9jophmw 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-7xt9jophmw] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-7xt9jophmw {
    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/Layout/ToastNotification.razor.rz.scp.css */
/* Toast Notifications Component Styles */

.toast-notifications[b-0f4qhra1kn] {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.toast-notification[b-0f4qhra1kn] {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    pointer-events: auto;
    min-width: 320px;
}

    .toast-notification.show[b-0f4qhra1kn] {
        transform: translateX(0);
        opacity: 1;
    }

    .toast-notification.success[b-0f4qhra1kn] {
        border-left: 4px solid #10b981;
        box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
    }

    .toast-notification.error[b-0f4qhra1kn] {
        border-left: 4px solid #ef4444;
        box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
    }

    .toast-notification.warning[b-0f4qhra1kn] {
        border-left: 4px solid #f59e0b;
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
    }

    .toast-notification.info[b-0f4qhra1kn] {
        border-left: 4px solid #06b6d4;
        box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
    }

.toast-content[b-0f4qhra1kn] {
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.toast-icon[b-0f4qhra1kn] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.toast-notification.success .toast-icon[b-0f4qhra1kn] {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.toast-notification.error .toast-icon[b-0f4qhra1kn] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.toast-notification.warning .toast-icon[b-0f4qhra1kn] {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.toast-notification.info .toast-icon[b-0f4qhra1kn] {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.toast-message[b-0f4qhra1kn] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.toast-title[b-0f4qhra1kn] {
    font-weight: 600;
    font-size: 1rem;
    color: #111827;
    line-height: 1.4;
}

.toast-text[b-0f4qhra1kn] {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.5;
    word-wrap: break-word;
}

.toast-close[b-0f4qhra1kn] {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

    .toast-close:hover[b-0f4qhra1kn] {
        background: #e5e7eb;
        color: #111827;
        border-color: #6366f1;
        transform: scale(1.1);
    }

.toast-progress[b-0f4qhra1kn] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    animation: progressBar-b-0f4qhra1kn linear forwards;
    border-radius: 0 0 16px 16px;
}

.toast-notification.success .toast-progress[b-0f4qhra1kn] {
    background: linear-gradient(90deg, #10b981, #047857);
}

.toast-notification.error .toast-progress[b-0f4qhra1kn] {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.toast-notification.warning .toast-progress[b-0f4qhra1kn] {
    background: linear-gradient(90deg, #f59e0b, #ea580c);
}

.toast-notification.info .toast-progress[b-0f4qhra1kn] {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .toast-notifications[b-0f4qhra1kn] {
        top: 60px;
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .toast-notification[b-0f4qhra1kn] {
        min-width: auto;
    }

    .toast-content[b-0f4qhra1kn] {
        padding: 14px 16px;
        gap: 10px;
    }

    .toast-icon[b-0f4qhra1kn] {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .toast-title[b-0f4qhra1kn] {
        font-size: 0.9rem;
    }

    .toast-text[b-0f4qhra1kn] {
        font-size: 0.8rem;
    }

    .toast-close[b-0f4qhra1kn] {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}

/* Animation Keyframes */
@keyframes progressBar-b-0f4qhra1kn {
    from { 
        width: 100%; 
        opacity: 1;
    }
    to { 
        width: 0%; 
        opacity: 0.5;
    }
}

/* Hover Effects */
.toast-notification:hover[b-0f4qhra1kn] {
    transform: translateX(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

    .toast-notification:hover .toast-progress[b-0f4qhra1kn] {
        animation-play-state: paused;
    }

/* Focus and Accessibility */
.toast-notification:focus-within[b-0f4qhra1kn] {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

.toast-close:focus[b-0f4qhra1kn] {
    outline: 2px solid #6366f1;
    outline-offset: 1px;
}
/* /Components/Pages/Auth/ForgotPassword.razor.rz.scp.css */
/* =============================================================================
   FORGOT PASSWORD PAGE STYLES - TailwindCSS + Custom Animations
   ============================================================================= */

/* Blob Animation for Background */
@keyframes blob-b-spzss31umi {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(30px, 10px) scale(1.02);
    }
}

.animate-blob[b-spzss31umi] {
    animation: blob-b-spzss31umi 15s ease-in-out infinite;
}

.animation-delay-2000[b-spzss31umi] {
    animation-delay: 2s;
}

.animation-delay-4000[b-spzss31umi] {
    animation-delay: 4s;
}

.animation-delay-500[b-spzss31umi] {
    animation-delay: 0.5s;
}

/* Float Animation for Logo */
@keyframes float-b-spzss31umi {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float[b-spzss31umi] {
    animation: float-b-spzss31umi 4s ease-in-out infinite;
}

/* Slow Pulse */
.animate-pulse-slow[b-spzss31umi] {
    animation: pulse-b-spzss31umi 3s ease-in-out infinite;
}

@keyframes pulse-b-spzss31umi {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp-b-spzss31umi {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up[b-spzss31umi] {
    animation: fadeInUp-b-spzss31umi 0.6s ease-out forwards;
}

/* Simple Fade In */
@keyframes fadeIn-b-spzss31umi {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in[b-spzss31umi] {
    animation: fadeIn-b-spzss31umi 0.4s ease-out forwards;
}

/* Input Autofill Override for Dark Theme */
input:-webkit-autofill[b-spzss31umi],
input:-webkit-autofill:hover[b-spzss31umi],
input:-webkit-autofill:focus[b-spzss31umi] {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: white !important;
    caret-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Reset button styles to prevent white background */
button[b-spzss31umi] {
    background-color: transparent;
}

/* Input box-sizing fix */
input[b-spzss31umi] {
    box-sizing: border-box !important;
}
/* /Components/Pages/Auth/Login.razor.rz.scp.css */
/* =============================================================================
   MODERN LOGIN PAGE STYLES - TailwindCSS + Custom Animations
   ============================================================================= */

/* Blob Animation for Background */
@keyframes blob-b-9ql64m3lnq {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(30px, 10px) scale(1.02);
    }
}

.animate-blob[b-9ql64m3lnq] {
    animation: blob-b-9ql64m3lnq 15s ease-in-out infinite;
}

.animation-delay-2000[b-9ql64m3lnq] {
    animation-delay: 2s;
}

.animation-delay-4000[b-9ql64m3lnq] {
    animation-delay: 4s;
}

.animation-delay-500[b-9ql64m3lnq] {
    animation-delay: 0.5s;
}

/* Float Animation for Logo */
@keyframes float-b-9ql64m3lnq {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float[b-9ql64m3lnq] {
    animation: float-b-9ql64m3lnq 4s ease-in-out infinite;
}

/* Slow Pulse */
.animate-pulse-slow[b-9ql64m3lnq] {
    animation: pulse-b-9ql64m3lnq 3s ease-in-out infinite;
}

@keyframes pulse-b-9ql64m3lnq {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp-b-9ql64m3lnq {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up[b-9ql64m3lnq] {
    animation: fadeInUp-b-9ql64m3lnq 0.6s ease-out forwards;
}

/* Simple Fade In */
@keyframes fadeIn-b-9ql64m3lnq {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in[b-9ql64m3lnq] {
    animation: fadeIn-b-9ql64m3lnq 0.4s ease-out forwards;
}

/* Slide In Animation */
@keyframes slideIn-b-9ql64m3lnq {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in[b-9ql64m3lnq] {
    animation: slideIn-b-9ql64m3lnq 0.4s ease-out forwards;
}

/* Custom Scrollbar */
.custom-scrollbar[b-9ql64m3lnq]::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar[b-9ql64m3lnq]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.custom-scrollbar[b-9ql64m3lnq]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.custom-scrollbar[b-9ql64m3lnq]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Input Autofill Override for Dark Theme */
input:-webkit-autofill[b-9ql64m3lnq],
input:-webkit-autofill:hover[b-9ql64m3lnq],
input:-webkit-autofill:focus[b-9ql64m3lnq] {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: white !important;
    caret-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Reset button styles to prevent white background */
button[b-9ql64m3lnq] {
    background-color: transparent;
}

/* Input box-sizing fix */
input[b-9ql64m3lnq] {
    box-sizing: border-box !important;
}

/* Ensure inputs don't overflow */
input[type="text"][b-9ql64m3lnq],
input[type="password"][b-9ql64m3lnq],
input[type="email"][b-9ql64m3lnq] {
    max-width: 100%;
    overflow: hidden;
}

/* /Components/Pages/Auth/NotFound.razor.rz.scp.css */
/* =============================================================================
   NOT FOUND PAGE STYLES - TailwindCSS + Custom Animations
   ============================================================================= */

/* Blob Animation for Background */
@keyframes blob-b-lihqd2da1i {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(30px, 10px) scale(1.02);
    }
}

.animate-blob[b-lihqd2da1i] {
    animation: blob-b-lihqd2da1i 15s ease-in-out infinite;
}

.animation-delay-2000[b-lihqd2da1i] {
    animation-delay: 2s;
}

.animation-delay-4000[b-lihqd2da1i] {
    animation-delay: 4s;
}

.animation-delay-500[b-lihqd2da1i] {
    animation-delay: 0.5s;
}

/* Float Animation */
@keyframes float-b-lihqd2da1i {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float[b-lihqd2da1i] {
    animation: float-b-lihqd2da1i 4s ease-in-out infinite;
}

/* Slow Pulse */
.animate-pulse-slow[b-lihqd2da1i] {
    animation: pulse-b-lihqd2da1i 3s ease-in-out infinite;
}

@keyframes pulse-b-lihqd2da1i {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp-b-lihqd2da1i {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up[b-lihqd2da1i] {
    animation: fadeInUp-b-lihqd2da1i 0.6s ease-out forwards;
}

/* Simple Fade In */
@keyframes fadeIn-b-lihqd2da1i {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in[b-lihqd2da1i] {
    animation: fadeIn-b-lihqd2da1i 0.4s ease-out forwards;
}
