/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-container[b-awtuoxcm2b] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.main-content[b-awtuoxcm2b] {
    flex: 1;
    padding: 2rem 0;
}

.main-content .container-fluid[b-awtuoxcm2b] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

#blazor-error-ui[b-awtuoxcm2b] {
    color-scheme: light only;
    background: #dc3545;
    color: white;
    bottom: 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-weight: 500;
}

#blazor-error-ui .dismiss[b-awtuoxcm2b] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.8;
}

#blazor-error-ui .dismiss:hover[b-awtuoxcm2b] {
    opacity: 1;
}

#blazor-error-ui .reload[b-awtuoxcm2b] {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 768px) {
    .main-content[b-awtuoxcm2b] {
        padding: 1rem 0;
    }

    .main-content .container-fluid[b-awtuoxcm2b] {
        padding: 0 1rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.top-navbar[b-9hj9onj751] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container[b-9hj9onj751] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

.navbar-brand[b-9hj9onj751] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.brand-icon[b-9hj9onj751] {
    font-size: 2rem;
}

.brand-text[b-9hj9onj751] {
    letter-spacing: -0.5px;
}

.navbar-toggler[b-9hj9onj751] {
    display: none;
}

.navbar-toggler-label[b-9hj9onj751] {
    display: none;
    font-size: 1.75rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.navbar-toggler-label:hover[b-9hj9onj751] {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-menu[b-9hj9onj751] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link[b-9hj9onj751] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover[b-9hj9onj751] {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-1px);
}

.nav-link[b-9hj9onj751]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background-color: white;
    border-radius: 3px 3px 0 0;
    transition: transform 0.3s ease;
}

.nav-link.active[b-9hj9onj751] {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
}

.nav-link.active[b-9hj9onj751]::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-icon[b-9hj9onj751] {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.nav-text[b-9hj9onj751] {
    font-size: 0.95rem;
}

.navbar-divider[b-9hj9onj751] {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

.navbar-user[b-9hj9onj751] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.user-icon[b-9hj9onj751] {
    font-size: 1.25rem;
}

.user-name[b-9hj9onj751] {
    font-weight: 600;
}

.nav-link-logout[b-9hj9onj751] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.nav-link-logout:hover[b-9hj9onj751] {
    background-color: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .navbar-container[b-9hj9onj751] {
        padding: 0 1rem;
        flex-wrap: wrap;
    }

    .navbar-toggler-label[b-9hj9onj751] {
        display: block;
    }

    .navbar-menu[b-9hj9onj751] {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-toggler:checked ~ .navbar-menu[b-9hj9onj751] {
        display: flex;
    }

    .nav-link[b-9hj9onj751] {
        padding: 1rem 1.25rem;
        border-radius: 6px;
    }

    .nav-link[b-9hj9onj751]::after {
        display: none;
    }

    .navbar-container[b-9hj9onj751] {
        height: auto;
        min-height: 65px;
    }

    .navbar-divider[b-9hj9onj751] {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }

    .navbar-user[b-9hj9onj751] {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }

    .nav-link-logout[b-9hj9onj751] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .brand-text[b-9hj9onj751] {
        font-size: 1.1rem;
    }

    .brand-icon[b-9hj9onj751] {
        font-size: 1.5rem;
    }

    .nav-text[b-9hj9onj751] {
        font-size: 0.9rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-gyl1m32pob],
.components-reconnect-repeated-attempt-visible[b-gyl1m32pob],
.components-reconnect-failed-visible[b-gyl1m32pob],
.components-pause-visible[b-gyl1m32pob],
.components-resume-failed-visible[b-gyl1m32pob],
.components-rejoining-animation[b-gyl1m32pob] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-gyl1m32pob],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-gyl1m32pob],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-gyl1m32pob],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-gyl1m32pob],
#components-reconnect-modal.components-reconnect-retrying[b-gyl1m32pob],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-gyl1m32pob],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-gyl1m32pob],
#components-reconnect-modal.components-reconnect-failed[b-gyl1m32pob],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-gyl1m32pob] {
    display: block;
}


#components-reconnect-modal[b-gyl1m32pob] {
    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-gyl1m32pob 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-gyl1m32pob 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-gyl1m32pob 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-gyl1m32pob]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-gyl1m32pob 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-gyl1m32pob {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-gyl1m32pob {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-gyl1m32pob {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-gyl1m32pob] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-gyl1m32pob] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-gyl1m32pob] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-gyl1m32pob] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-gyl1m32pob] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-gyl1m32pob] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-gyl1m32pob] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-gyl1m32pob 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-gyl1m32pob] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-gyl1m32pob {
    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/Pages/Login.razor.rz.scp.css */
.login-container[b-dwgvaxnpix] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 1rem;
}

.login-card[b-dwgvaxnpix] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    width: 100%;
    max-width: 440px;
    animation: slideUp-b-dwgvaxnpix 0.5s ease-out;
}

@keyframes slideUp-b-dwgvaxnpix {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header[b-dwgvaxnpix] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon[b-dwgvaxnpix] {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce-b-dwgvaxnpix 2s infinite;
}

@keyframes bounce-b-dwgvaxnpix {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.login-header h1[b-dwgvaxnpix] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.login-header p[b-dwgvaxnpix] {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

.form-group[b-dwgvaxnpix] {
    margin-bottom: 1.5rem;
}

.form-label[b-dwgvaxnpix] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.label-icon[b-dwgvaxnpix] {
    font-size: 1.1rem;
}

.form-control[b-dwgvaxnpix] {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.form-control:focus[b-dwgvaxnpix] {
    background: white;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-control[b-dwgvaxnpix]::placeholder {
    color: #a0aec0;
}

.btn-login[b-dwgvaxnpix] {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-login:hover:not(:disabled)[b-dwgvaxnpix] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.btn-login:active:not(:disabled)[b-dwgvaxnpix] {
    transform: translateY(0);
}

.btn-login:disabled[b-dwgvaxnpix] {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert[b-dwgvaxnpix] {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-danger[b-dwgvaxnpix] {
    background: #fee;
    border: 1px solid #fcc;
    color: #c53030;
}

.validation-message[b-dwgvaxnpix] {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.login-footer[b-dwgvaxnpix] {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.spinner-border[b-dwgvaxnpix] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-dwgvaxnpix 0.75s linear infinite;
}

@keyframes spinner-border-b-dwgvaxnpix {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border-sm[b-dwgvaxnpix] {
    width: 0.9rem;
    height: 0.9rem;
    border-width: 2px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .login-card[b-dwgvaxnpix] {
        padding: 2rem 1.5rem;
    }

    .login-header h1[b-dwgvaxnpix] {
        font-size: 1.5rem;
    }

    .login-icon[b-dwgvaxnpix] {
        font-size: 3rem;
    }
}
/* /Components/Pages/Logout.razor.rz.scp.css */
.logout-container[b-4ny89xp8br] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.logout-message[b-4ny89xp8br] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
    animation: fadeIn-b-4ny89xp8br 0.3s ease-out;
}

@keyframes fadeIn-b-4ny89xp8br {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logout-icon[b-4ny89xp8br] {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: wave-b-4ny89xp8br 1s ease-in-out infinite;
}

@keyframes wave-b-4ny89xp8br {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-20deg);
    }
}

.logout-message h3[b-4ny89xp8br] {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.logout-message p[b-4ny89xp8br] {
    color: #718096;
    margin: 0;
}
