/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-o2pzrl0rlc] {
    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-o2pzrl0rlc] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
header[b-kim8ioczhj] {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    background: #111827;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo[b-kim8ioczhj] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #38bdf8;
}

.logo img[b-kim8ioczhj] {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

nav[b-kim8ioczhj] {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav[b-kim8ioczhj]  a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: .3s;
}

nav[b-kim8ioczhj]  a:hover {
    color: #38bdf8;
}

nav[b-kim8ioczhj]  .active {
    color: #38bdf8;
}


@media(max-width:900px) {

    header[b-kim8ioczhj] {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }

    nav[b-kim8ioczhj] {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo[b-kim8ioczhj] {
        font-size: 24px;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-nubhefeucx],
.components-reconnect-repeated-attempt-visible[b-nubhefeucx],
.components-reconnect-failed-visible[b-nubhefeucx],
.components-pause-visible[b-nubhefeucx],
.components-resume-failed-visible[b-nubhefeucx],
.components-rejoining-animation[b-nubhefeucx] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-nubhefeucx],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-nubhefeucx],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-nubhefeucx],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-nubhefeucx],
#components-reconnect-modal.components-reconnect-retrying[b-nubhefeucx],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-nubhefeucx],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-nubhefeucx],
#components-reconnect-modal.components-reconnect-failed[b-nubhefeucx],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-nubhefeucx] {
    display: block;
}


#components-reconnect-modal[b-nubhefeucx] {
    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-nubhefeucx 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-nubhefeucx 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-nubhefeucx 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-nubhefeucx]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-nubhefeucx 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-nubhefeucx {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-nubhefeucx {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-nubhefeucx {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-nubhefeucx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-nubhefeucx] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-nubhefeucx] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-nubhefeucx] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-nubhefeucx] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-nubhefeucx] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-nubhefeucx] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-nubhefeucx 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-nubhefeucx] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-nubhefeucx {
    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/About.razor.rz.scp.css */
.hero[b-44jljvfee2] {
    text-align: center;
    padding: 80px 20px;
}

.content-block[b-44jljvfee2] {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2[b-44jljvfee2] {
    margin-bottom: 15px;
}

.content-block p[b-44jljvfee2] {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.8;
}

.browser-links[b-44jljvfee2] {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
/* /Components/Pages/Components/BrowserExtensionCard.razor.rz.scp.css */
.browser-card[b-wdov23dfdt] {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: .2s;
}

.browser-card:hover[b-wdov23dfdt] {
    transform: translateY(-4px);
    border-color: #3b82f6;
}

.browser-card img[b-wdov23dfdt] {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}

.browser-card h3[b-wdov23dfdt] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
/* /Components/Pages/Components/Button.razor.rz.scp.css */
button[b-4bct0xqx83] {
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: #0ea5e9;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

button:hover:not(:disabled)[b-4bct0xqx83] {
    background: #0284c7;
}

.green[b-4bct0xqx83] {
    background: #22c55e;
}

.green:hover:not(:disabled)[b-4bct0xqx83] {
    background: #16a34a;
}

button:disabled[b-4bct0xqx83] {
    filter: grayscale(100%);
    pointer-events: none;
}
/* /Components/Pages/Components/Input.razor.rz.scp.css */
input[b-jtfgqwqd50] {
    width: 100%;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#334155;
    color:white;
    font-size:16px;
    outline:none;
    box-sizing:border-box;
}

input[b-jtfgqwqd50]::placeholder {
    color:#94a3b8;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.hero[b-jnq1cok8ea] {
    text-align: center;
    padding: 80px 20px;
}

.hero h1[b-jnq1cok8ea] {
    font-size: 52px;
    margin-bottom: 15px;
    
    &:focus-visible {
        outline: none;
    }
}

.hero p[b-jnq1cok8ea] {
    color: #9ca3af;
    font-size: 18px;
    max-width: 800px;
    margin: auto;
}

.container[b-jnq1cok8ea] {
    width: 700px;
    margin: auto;
    margin-bottom: 40px;
}

.card[b-jnq1cok8ea] {
    background: #1e293b;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.card h2[b-jnq1cok8ea] {
    text-align: center;
    color: white;
}

.result[b-jnq1cok8ea] {
    margin-top: 40px;
    margin-bottom: 40px;
    background: #1e293b;
    border-radius: 15px;
    padding: 30px;
}

.result h3[b-jnq1cok8ea] {
    margin-bottom: 20px;
}

.short-link[b-jnq1cok8ea] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.error-message[b-jnq1cok8ea] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 10px;
    color: #f87171;
    font-size: 14px;
    font-weight: 600;
    animation: fadeIn .2s ease;
}


@media(max-width:900px) {

    .container[b-jnq1cok8ea] {
        width: 95%;
        margin-bottom: 40px;
    }

    .hero[b-jnq1cok8ea] {
        padding: 50px 20px;
    }

    .hero h1[b-jnq1cok8ea] {
        font-size: 36px;
    }

    .short-link[b-jnq1cok8ea] {
        flex-direction: column;
    }

}
/* /Components/Pages/Privacy.razor.rz.scp.css */
.hero[b-28igawrmos] {
    text-align: center;
    padding: 80px 20px;
}

.hero h1[b-28igawrmos] {
    font-size: 52px;
    margin-bottom: 15px;
}

.hero p[b-28igawrmos] {
    color: #9ca3af;
    font-size: 18px;
    max-width: 800px;
    margin: auto;
}


@media (max-width: 768px) {

    .hero[b-28igawrmos] {
        padding: 50px 20px;
    }

    .hero h1[b-28igawrmos] {
        font-size: 36px;
    }

    .hero p[b-28igawrmos] {
        font-size: 16px;
    }

}
