/* /Components/CreatePostModal.razor.rz.scp.css */
.create-post-modal[b-qbgk1z0hys] {
    background-color: var(--bg-elevated);
    width: 90%;
    max-width: 560px;
    margin: 10vh auto;
    padding: 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.create-post-modal[open][b-qbgk1z0hys] {
    opacity: 1;
}

.create-post-modal[b-qbgk1z0hys]::backdrop {
    background-color: rgba(15, 17, 23, 0.45);
    backdrop-filter: blur(4px);
}

.modal-content[b-qbgk1z0hys] {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-header[b-qbgk1z0hys] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.modal-header h3[b-qbgk1z0hys] {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.modal-close[b-qbgk1z0hys] {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close:hover[b-qbgk1z0hys] {
    color: var(--text-primary);
}

.modal-body[b-qbgk1z0hys] {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.form-group[b-qbgk1z0hys] {
    margin-bottom: 1.5rem;
}

.form-group label[b-qbgk1z0hys] {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-control[b-qbgk1z0hys] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus[b-qbgk1z0hys] {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.text-muted[b-qbgk1z0hys] {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.alert[b-qbgk1z0hys] {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.alert-danger[b-qbgk1z0hys] {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

.form-actions[b-qbgk1z0hys] {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.btn[b-qbgk1z0hys] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.btn:disabled[b-qbgk1z0hys] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-qbgk1z0hys] {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-qbgk1z0hys] {
    background-color: var(--accent-hover);
}

.btn-secondary[b-qbgk1z0hys] {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled)[b-qbgk1z0hys] {
    background-color: var(--border);
}

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-3vanwtaah1] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-3vanwtaah1] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sidebar[b-3vanwtaah1] {
    background-color: var(--bg-secondary);
    border-right: 1px solid var(--border-subtle);
}

@media (min-width: 641px) {
    .page[b-3vanwtaah1] {
        flex-direction: row;
    }

    .sidebar[b-3vanwtaah1] {
        width: 240px;
        height: 100vh;
        position: sticky;
        top: 0;
    }
}

#blazor-error-ui[b-3vanwtaah1] {
    background-color: var(--error);
    color: white;
    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-3vanwtaah1] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-inner[b-7ebq1c2em7] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem 1rem;
}

.navbar-brand[b-7ebq1c2em7] {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.03em;
    text-decoration: none;
    margin-bottom: 1rem;
}

.navbar-brand:hover[b-7ebq1c2em7] {
    color: var(--accent);
}

.sidebar-user[b-7ebq1c2em7] {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    overflow: hidden;
    padding: 0.625rem 0.875rem;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-user:hover[b-7ebq1c2em7] {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    color: var(--accent);
}

.navbar-toggler-input[b-7ebq1c2em7] {
    display: none;
}

.navbar-toggler-btn[b-7ebq1c2em7] {
    appearance: none;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    display: none;
    font-size: 1.125rem;
    line-height: 1;
    padding: 0.35rem 0.6rem;
}

.nav-scrollable[b-7ebq1c2em7] {
    flex: 1;
    padding: 0;
}

.nav[b-7ebq1c2em7] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-height: 100%;
}

.nav-item[b-7ebq1c2em7] {
    margin: 0;
}

.nav-item-spacer[b-7ebq1c2em7] {
    flex: 1;
    min-height: 1rem;
}

.nav-link[b-7ebq1c2em7] {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.625rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover[b-7ebq1c2em7] {
    background-color: var(--accent-soft);
    color: var(--accent);
}

.nav-link.active[b-7ebq1c2em7] {
    background-color: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
}

.nav-link-action[b-7ebq1c2em7] {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    text-align: left;
    width: 100%;
}

@media (max-width: 640px) {
    .sidebar-inner[b-7ebq1c2em7] {
        position: relative;
    }

    .navbar-toggler-btn[b-7ebq1c2em7] {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1.25rem;
    }

    .nav-scrollable[b-7ebq1c2em7] {
        display: none;
    }

    .navbar-toggler-input:checked ~ .nav-scrollable[b-7ebq1c2em7] {
        display: block;
        margin-top: 0.5rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-rds3geha2u],
.components-reconnect-repeated-attempt-visible[b-rds3geha2u],
.components-reconnect-failed-visible[b-rds3geha2u],
.components-pause-visible[b-rds3geha2u],
.components-resume-failed-visible[b-rds3geha2u],
.components-rejoining-animation[b-rds3geha2u] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-rds3geha2u {
    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;
    }
}
