/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-y2ql1bb828] {
    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-y2ql1bb828] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-mb64rye5yz],
.components-reconnect-repeated-attempt-visible[b-mb64rye5yz],
.components-reconnect-failed-visible[b-mb64rye5yz],
.components-pause-visible[b-mb64rye5yz],
.components-resume-failed-visible[b-mb64rye5yz],
.components-rejoining-animation[b-mb64rye5yz] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-mb64rye5yz],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-mb64rye5yz],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-mb64rye5yz],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-mb64rye5yz],
#components-reconnect-modal.components-reconnect-retrying[b-mb64rye5yz],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-mb64rye5yz],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-mb64rye5yz],
#components-reconnect-modal.components-reconnect-failed[b-mb64rye5yz],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-mb64rye5yz] {
    display: block;
}


#components-reconnect-modal[b-mb64rye5yz] {
    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-mb64rye5yz 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-mb64rye5yz 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-mb64rye5yz 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-mb64rye5yz]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-mb64rye5yz 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-mb64rye5yz {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-mb64rye5yz {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-mb64rye5yz {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-mb64rye5yz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-mb64rye5yz] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-mb64rye5yz] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-mb64rye5yz] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-mb64rye5yz] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-mb64rye5yz] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-mb64rye5yz] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-mb64rye5yz 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-mb64rye5yz] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-mb64rye5yz {
    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/Dashboard/Home.razor.rz.scp.css */
.home-container[b-4fg89qpgfj] {
    padding: 2rem;
    font-family: 'Segoe UI', sans-serif;
}

.home-header h1[b-4fg89qpgfj] {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.home-header p[b-4fg89qpgfj] {
    font-size: 1rem;
    color: #7f8c8d;
}

.button-section[b-4fg89qpgfj] {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn[b-4fg89qpgfj] {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn:hover[b-4fg89qpgfj] {
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

.info-card[b-4fg89qpgfj] {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f1c40f;
    color: #2c3e50;
    transition: background 0.3s, transform 0.3s;
}

    .info-card:hover[b-4fg89qpgfj] {
        background: #f39c12;
        transform: translateY(-5px);
    }

.modal-overlay[b-4fg89qpgfj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content[b-4fg89qpgfj] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pop-in-b-4fg89qpgfj 0.3s ease-out;
}

@keyframes pop-in-b-4fg89qpgfj {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.notification-section[b-4fg89qpgfj] {
    margin-top: 2rem;
    position: relative;
}

.notification[b-4fg89qpgfj] {
    margin-top: 1rem;
    background: #3498db;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    animation: slide-down-b-4fg89qpgfj 0.5s ease-out;
}

@keyframes slide-down-b-4fg89qpgfj {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Pages/Static/About.razor.rz.scp.css */
.about-container[b-li3o0fke9i] {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}

    .about-container h1[b-li3o0fke9i] {
        font-size: 2rem;
        margin-bottom: 5px;
    }

.version[b-li3o0fke9i] {
    font-size: 1rem;
    color: #888;
}

.author[b-li3o0fke9i] {
    font-style: italic;
    margin-bottom: 15px;
}

.description[b-li3o0fke9i] {
    margin-bottom: 20px;
}

.about-container ul[b-li3o0fke9i] {
    margin-left: 20px;
    margin-bottom: 20px;
}

.contact-card p[b-li3o0fke9i] {
    margin: 5px 0;
}

.btn-refresh[b-li3o0fke9i] {
    padding: 8px 16px;
    background-color: #4CAF50;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-refresh:hover[b-li3o0fke9i] {
        background-color: #45a049;
    }

.loading[b-li3o0fke9i] {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #555;
}
/* /Components/Pages/Static/Privacy.razor.rz.scp.css */
.privacy-container[b-sbdg23lkse] {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}

h1[b-sbdg23lkse] {
    font-size: 2rem;
    margin-bottom: 10px;
}

.last-updated[b-sbdg23lkse] {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.description[b-sbdg23lkse] {
    margin-bottom: 25px;
}

.section-card[b-sbdg23lkse] {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

    .section-card:hover[b-sbdg23lkse] {
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

.section-header[b-sbdg23lkse] {
    padding: 12px 16px;
    background-color: #f7f7f7;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-content[b-sbdg23lkse] {
    padding: 12px 16px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.toggle-icon[b-sbdg23lkse] {
    font-size: 0.9rem;
    color: #555;
}

.btn-refresh[b-sbdg23lkse] {
    padding: 8px 16px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

    .btn-refresh:hover[b-sbdg23lkse] {
        background-color: #0069d9;
    }

.loading[b-sbdg23lkse] {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #555;
}
