/* /Components/Layout/MainLayout.razor.rz.scp.css */
.topbar[b-6g9tlsxm9d] {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0 1.5rem;
    height: 3.25rem;
    background-color: var(--surface);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand[b-6g9tlsxm9d] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    border-bottom: none;
}

.brand:hover[b-6g9tlsxm9d] { color: var(--accent); border-bottom: none; }

.brand-mark[b-6g9tlsxm9d] {
    font-size: 1.35rem;
    color: var(--accent);
    font-weight: 700;
    line-height: 1;
}

.brand-name[b-6g9tlsxm9d] {
    font-size: 1rem;
}

.topbar-spacer[b-6g9tlsxm9d] {
    flex: 1;
}

.topbar-link[b-6g9tlsxm9d] {
    font-size: 0.88rem;
    color: var(--ink-muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.topbar-link:hover[b-6g9tlsxm9d] {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

main[b-6g9tlsxm9d] {
    min-height: calc(100vh - 3.25rem);
}

#blazor-error-ui[b-6g9tlsxm9d] {
    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-6g9tlsxm9d] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 640px) {
    .topbar[b-6g9tlsxm9d] {
        gap: 0.9rem;
        padding: 0 1rem;
    }

    .brand-name[b-6g9tlsxm9d] {
        display: none;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.topnav[b-piolmkouzc] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topnav[b-piolmkouzc]  .topnav-link {
    font-size: 0.9rem;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.1s ease, border-color 0.1s ease;
}

.topnav[b-piolmkouzc]  .topnav-link:hover {
    color: var(--ink);
}

.topnav[b-piolmkouzc]  .topnav-link.active {
    color: var(--ink);
    border-bottom-color: var(--accent);
    font-weight: 500;
}

@media (max-width: 640px) {
    .topnav[b-piolmkouzc] {
        gap: 1rem;
    }

    .topnav[b-piolmkouzc]  .topnav-link {
        font-size: 0.85rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-7i0y87mv7e],
.components-reconnect-repeated-attempt-visible[b-7i0y87mv7e],
.components-reconnect-failed-visible[b-7i0y87mv7e],
.components-pause-visible[b-7i0y87mv7e],
.components-resume-failed-visible[b-7i0y87mv7e],
.components-rejoining-animation[b-7i0y87mv7e] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-7i0y87mv7e],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-7i0y87mv7e],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-7i0y87mv7e],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-7i0y87mv7e],
#components-reconnect-modal.components-reconnect-retrying[b-7i0y87mv7e],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-7i0y87mv7e],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-7i0y87mv7e],
#components-reconnect-modal.components-reconnect-failed[b-7i0y87mv7e],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-7i0y87mv7e] {
    display: block;
}


#components-reconnect-modal[b-7i0y87mv7e] {
    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-7i0y87mv7e 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-7i0y87mv7e 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-7i0y87mv7e 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-7i0y87mv7e]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-7i0y87mv7e 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-7i0y87mv7e {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-7i0y87mv7e {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-7i0y87mv7e {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-7i0y87mv7e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-7i0y87mv7e] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-7i0y87mv7e] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-7i0y87mv7e] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-7i0y87mv7e] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-7i0y87mv7e] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-7i0y87mv7e] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-7i0y87mv7e 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-7i0y87mv7e] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-7i0y87mv7e {
    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/Docs.razor.rz.scp.css */
.markdown-body[b-9yibwr11yz] {
    max-width: 52rem;
    line-height: 1.65;
    color: var(--ink);
    font-size: 0.95rem;
}

.markdown-body[b-9yibwr11yz]  h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--rule-strong);
}

.markdown-body[b-9yibwr11yz]  h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2.2rem 0 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--rule);
}

.markdown-body[b-9yibwr11yz]  h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1.6rem 0 0.6rem;
}

.markdown-body[b-9yibwr11yz]  p {
    margin: 0 0 0.9rem;
}

.markdown-body[b-9yibwr11yz]  ul,
.markdown-body[b-9yibwr11yz]  ol {
    margin: 0 0 0.9rem;
    padding-left: 1.5rem;
}

.markdown-body[b-9yibwr11yz]  li {
    margin-bottom: 0.25rem;
}

.markdown-body[b-9yibwr11yz]  code {
    background-color: var(--paper-sunk);
    padding: 0.1rem 0.35rem;
    border-radius: 2px;
    font-size: 0.85em;
    color: var(--ink);
    border: 1px solid var(--rule);
}

.markdown-body[b-9yibwr11yz]  pre {
    background-color: var(--paper-sunk);
    border: 1px solid var(--rule);
    border-radius: 3px;
    padding: 0.85rem 1rem;
    overflow-x: auto;
    margin: 0 0 1.1rem;
    font-size: 0.85rem;
    line-height: 1.55;
}

.markdown-body[b-9yibwr11yz]  pre code {
    background: transparent;
    border: none;
    padding: 0;
    font-size: inherit;
}

.markdown-body[b-9yibwr11yz]  blockquote {
    border-left: 3px solid var(--rule-strong);
    padding: 0.1rem 0 0.1rem 1rem;
    margin: 0 0 1rem;
    color: var(--ink-soft);
    font-style: italic;
}

.markdown-body[b-9yibwr11yz]  table {
    border-collapse: collapse;
    margin: 0 0 1.2rem;
    width: 100%;
    font-size: 0.88rem;
}

.markdown-body[b-9yibwr11yz]  th,
.markdown-body[b-9yibwr11yz]  td {
    border: 1px solid var(--rule);
    padding: 0.45rem 0.7rem;
    text-align: left;
    vertical-align: top;
}

.markdown-body[b-9yibwr11yz]  th {
    background-color: var(--paper-sunk);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
}

.markdown-body[b-9yibwr11yz]  a {
    color: var(--accent);
}

.markdown-body[b-9yibwr11yz]  hr {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 2rem 0;
}

.markdown-body[b-9yibwr11yz]  strong {
    font-weight: 600;
}
/* /Components/Pages/ParagraphViewer.razor.rz.scp.css */
.page-byline[b-bomlbxz4sl] {
    color: var(--ink-soft);
    margin: -0.4rem 0 1rem;
    max-width: 56rem;
    font-size: 0.93rem;
}

.page-howto[b-bomlbxz4sl] {
    margin: 0 0 1.5rem;
    border: 1px solid var(--rule);
    background-color: var(--surface);
    border-radius: 3px;
    max-width: 56rem;
}

.page-howto > summary[b-bomlbxz4sl] {
    cursor: pointer;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    list-style: none;
    user-select: none;
}

.page-howto > summary[b-bomlbxz4sl]::-webkit-details-marker {
    display: none;
}

.page-howto > summary[b-bomlbxz4sl]::before {
    content: "▸";
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--ink-muted);
    transition: transform 0.1s ease;
}

.page-howto[open] > summary[b-bomlbxz4sl]::before {
    transform: rotate(90deg);
}

.page-howto > summary:hover[b-bomlbxz4sl] {
    color: var(--ink);
}

.page-howto-body[b-bomlbxz4sl] {
    padding: 0.25rem 1.1rem 0.85rem 2rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--ink-soft);
    border-top: 1px solid var(--rule);
    margin-top: 0.1rem;
}

.page-howto-body ul[b-bomlbxz4sl] {
    margin: 0.6rem 0 0.5rem;
    padding-left: 1.1rem;
}

.page-howto-body li[b-bomlbxz4sl] {
    margin-bottom: 0.35rem;
}

.page-howto-body strong[b-bomlbxz4sl] {
    color: var(--ink);
    font-weight: 600;
}

.page-howto-link[b-bomlbxz4sl] {
    margin: 0.7rem 0 0;
    font-size: 0.88rem;
}

.filter-bar[b-bomlbxz4sl] {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-row[b-bomlbxz4sl] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.85rem;
}

.filter-field[b-bomlbxz4sl] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.filter-action[b-bomlbxz4sl] {
    align-self: flex-end;
}

.filter-action[b-bomlbxz4sl]  .btn {
    padding: 0.4rem 1.25rem;
}

.form-hint[b-bomlbxz4sl] {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--ink-muted);
    margin-left: 0.35rem;
}

[b-bomlbxz4sl] .verse-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    padding: 0.05rem 0.4rem;
    border-radius: 2px;
    margin-right: 0.5rem;
    vertical-align: 0.1em;
}

[b-bomlbxz4sl] .verse-tag-exclusion {
    background-color: var(--bad-soft);
    color: var(--bad);
    border: 1px solid var(--bad);
}

[b-bomlbxz4sl] tr.verse-exclusion td {
    color: var(--ink-soft);
    font-style: italic;
}

[b-bomlbxz4sl] tr.verse-exclusion.table-warning td {
    font-style: italic;
}

