/* /Components/Layout/AccountLayout.razor.rz.scp.css */
.account-shell[b-wwd25jwa87] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: radial-gradient(circle at top, #E9E1FA 0%, var(--mud-palette-background) 60%);
}

.account-shell[b-wwd25jwa87]  .account-card {
    width: 100%;
    max-width: 26rem;
    padding: 2.5rem 2rem;
}

.account-brand[b-wwd25jwa87] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-1y8yynw4bq] {
    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: 2000;
}

    #blazor-error-ui .dismiss[b-1y8yynw4bq] {
        cursor: pointer;
        position: absolute;
        inset-inline-end: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-kam3tma2p6],
.components-reconnect-repeated-attempt-visible[b-kam3tma2p6],
.components-reconnect-failed-visible[b-kam3tma2p6],
.components-pause-visible[b-kam3tma2p6],
.components-resume-failed-visible[b-kam3tma2p6],
.components-rejoining-animation[b-kam3tma2p6] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-kam3tma2p6],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-kam3tma2p6],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-kam3tma2p6],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-kam3tma2p6],
#components-reconnect-modal.components-reconnect-retrying[b-kam3tma2p6],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-kam3tma2p6],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-kam3tma2p6],
#components-reconnect-modal.components-reconnect-failed[b-kam3tma2p6],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-kam3tma2p6] {
    display: block;
}


#components-reconnect-modal[b-kam3tma2p6] {
    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-kam3tma2p6 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-kam3tma2p6 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-kam3tma2p6 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-kam3tma2p6]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-kam3tma2p6 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-kam3tma2p6 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-kam3tma2p6 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-kam3tma2p6 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-kam3tma2p6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-kam3tma2p6] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-kam3tma2p6] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-kam3tma2p6] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-kam3tma2p6] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-kam3tma2p6] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-kam3tma2p6] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-kam3tma2p6 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-kam3tma2p6] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-kam3tma2p6 {
    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/AnalysisNotes/NoteCard.razor.rz.scp.css */
/* A note keeps the analyst's line breaks, as article bodies do. */
.note-body[b-8dkjam5siu] {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    margin: 0.5rem 0;
}

/* A long unbroken subject (a URL) wraps inside the card, as the body does, instead of pushing the edit and delete buttons
   out of it. "anywhere", unlike "break-word", also lets the subject's column shrink to make room for them. */
.note-subject[b-8dkjam5siu] {
    overflow-wrap: anywhere;
}

/* A classification note's proposed gate, above its text; long titles wrap inside the card. */
.note-proposal[b-8dkjam5siu] {
    margin: 0.5rem 0 0;
    overflow-wrap: anywhere;
}
/* /Components/Pages/Articles/ArticleDetailsPage.razor.rz.scp.css */
/* The body keeps the gatherer's line breaks; the legacy page showed it at 20px. */
.article-details[b-vztjud4wtf]  .article-body {
    white-space: pre-wrap;
    font-size: 1.25rem;
    line-height: 2;
}

.article-details[b-vztjud4wtf]  .info-field {
    height: 100%;
}

.article-details[b-vztjud4wtf]  .info-field-value {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
/* /Components/Pages/Articles/Articles.razor.rz.scp.css */
/* Long subjects: two lines at most, the full text is in the title tooltip. */
.articles-page[b-s6f46odt5c]  .article-subject {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 40rem;
}

.articles-page[b-s6f46odt5c]  .mud-table-toolbar {
    flex-wrap: wrap;
    height: auto;
    gap: 0.5rem;
    padding-block: 0.5rem;
}

/* MudBlazor forces direction: initial on the caption, which reverses the Arabic "1-20 من 7,916". */
.articles-page[b-s6f46odt5c]  .mud-table-page-number-information {
    direction: rtl;
}
/* /Components/Pages/NoteLists/NotesList.razor.rz.scp.css */
/* Long titles and subjects: two lines at most, the whole title or subject is in the tooltip. A note's text start is already cut short. */
.notes-list-page[b-k6bcusfj7n]  .clamped {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-width: 7rem;
    max-width: 16rem;
}

/* A note without a subject is named by the start of its text: quieter, so it does not read as a subject. */
.notes-list-page[b-k6bcusfj7n]  .body-start {
    color: var(--mud-palette-text-secondary);
}

.notes-list-page[b-k6bcusfj7n]  .mud-table-toolbar {
    flex-wrap: wrap;
    height: auto;
    gap: 0.5rem;
    padding-block: 0.5rem;
}

/* MudBlazor forces direction: initial on the caption, which reverses the Arabic "1-20 من 100". */
.notes-list-page[b-k6bcusfj7n]  .mud-table-page-number-information {
    direction: rtl;
}

/* A timestamp wraps between date and time, never inside the date. */
.notes-list-page[b-k6bcusfj7n]  .timestamp {
    display: inline-block;
    max-width: 6rem;
}

/* Below 600px the table becomes cards with room to spare: show the full texts, which cannot be hovered there. */
@media (max-width: 599.98px) {
    .notes-list-page[b-k6bcusfj7n]  .clamped {
        display: inline;
        -webkit-line-clamp: unset;
        max-width: none;
        min-width: 0;
    }
}
/* /Components/Pages/Reports/AdministrativeReportDetailsPage.razor.rz.scp.css */
.report-details[b-hkrkrdd6st]  .info-field {
    height: 100%;
}

/* The report's text and notes keep the analyst's line breaks. */
.report-details[b-hkrkrdd6st]  .info-field-value {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
/* /Components/Pages/Reports/ContentReportDetailsPage.razor.rz.scp.css */
.report-details[b-u7hh0a8w7m]  .info-field {
    height: 100%;
}

/* The report's text and notes keep the analyst's line breaks. */
.report-details[b-u7hh0a8w7m]  .info-field-value {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
/* /Components/Pages/Reports/ReportsList.razor.rz.scp.css */
.reports-list-page[b-ztxkntdv6f]  .mud-table-toolbar {
    flex-wrap: wrap;
    height: auto;
    gap: 0.5rem;
    padding-block: 0.5rem;
}

/* MudBlazor forces direction: initial on the caption, which reverses the Arabic "1-20 من 100". */
.reports-list-page[b-ztxkntdv6f]  .mud-table-page-number-information {
    direction: rtl;
}

/* A timestamp wraps between date and time, never inside the date. */
.reports-list-page[b-ztxkntdv6f]  .timestamp {
    display: inline-block;
    max-width: 6rem;
}

/* A period wraps between its two dates, never inside one. */
.reports-list-page[b-ztxkntdv6f]  .period {
    display: inline-block;
    max-width: 12rem;
}
/* /Components/Pages/Sources/Sources.razor.rz.scp.css */
/* The toolbar holds a title, the search and a button: let it wrap on narrow screens instead of squeezing the title. */
.sources-page[b-v5rlc0npkn]  .mud-table-toolbar {
    flex-wrap: wrap;
    height: auto;
    gap: 0.5rem;
    padding-block: 0.5rem;
}

.sources-page[b-v5rlc0npkn]  .sources-search {
    min-width: 10rem;
}
/* /Components/Pages/SubTopicRatings/RatingCard.razor.rz.scp.css */
/* A description keeps the analyst's line breaks, as notes do. */
.rating-description[b-31gjvpqfb9] {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    margin: 0.5rem 0;
}
/* /Components/Pages/SubTopics/SubTopicDetailsPage.razor.rz.scp.css */
/* The body keeps the gatherer's line breaks, at the article page's size. */
.subtopic-details[b-9zcm5xlvtn]  .subtopic-body {
    white-space: pre-wrap;
    font-size: 1.25rem;
    line-height: 2;
}

.subtopic-details[b-9zcm5xlvtn]  .info-field {
    height: 100%;
}

.subtopic-details[b-9zcm5xlvtn]  .info-field-value {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
/* /Components/Pages/SubTopics/SubTopics.razor.rz.scp.css */
/* Long subjects: two lines at most, the full text is in the title tooltip. */
.subtopics-page[b-n5v0fa51v7]  .clamped {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 24rem;
}

.subtopics-page[b-n5v0fa51v7]  .mud-table-toolbar {
    flex-wrap: wrap;
    height: auto;
    gap: 0.5rem;
    padding-block: 0.5rem;
}

/* MudBlazor forces direction: initial on the caption, which reverses the Arabic "1-20 من 18,758". */
.subtopics-page[b-n5v0fa51v7]  .mud-table-page-number-information {
    direction: rtl;
}

/* The classification titles are long: two lines each, the full title in the tooltip, so the texts keep their room. */
.subtopics-page[b-n5v0fa51v7]  .clamped.tree {
    max-width: 8rem;
}

.subtopics-page[b-n5v0fa51v7]  .clamped:not(.tree) {
    min-width: 7rem;
    max-width: 14rem;
}

/* A timestamp wraps between date and time, never inside the date. */
.subtopics-page[b-n5v0fa51v7]  .timestamp {
    display: inline-block;
    max-width: 6rem;
}

/* Below 600px the table becomes cards with room to spare: show the full titles, which cannot be hovered there. */
@media (max-width: 599.98px) {
    .subtopics-page[b-n5v0fa51v7]  .clamped {
        display: inline;
        -webkit-line-clamp: unset;
        max-width: none;
        min-width: 0;
    }
}
/* /Components/Pages/SuggestedTrees/SubTopicSuggestionsSection.razor.rz.scp.css */
/* Titles may be one long word: they wrap inside the card, as on the suggestion's own page. The link is MudLink's element,
   not this component's, so the rule reaches it from the section. */
section[b-b6vot3ymms]  .suggestion-link {
    overflow-wrap: anywhere;
}

/* A reason keeps its line breaks, but a long one is cut to three lines here; the suggestion's page shows it whole. */
.suggestion-reason[b-b6vot3ymms] {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.25rem;
}
/* /Components/Pages/SuggestedTrees/SuggestedTreeDetailsPage.razor.rz.scp.css */
.suggestion-details[b-elgwgco5sl]  .info-field {
    height: 100%;
}

/* The reason keeps the gatherer's line breaks. */
.suggestion-details[b-elgwgco5sl]  .info-field-value {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
/* /Components/Pages/SuggestedTrees/SuggestedTrees.razor.rz.scp.css */
/* Long subjects: two lines at most, the full text is in the title tooltip. */
.suggestions-page[b-aabf8drgor]  .clamped {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 24rem;
}

.suggestions-page[b-aabf8drgor]  .mud-table-toolbar {
    flex-wrap: wrap;
    height: auto;
    gap: 0.5rem;
    padding-block: 0.5rem;
}

/* MudBlazor forces direction: initial on the caption, which reverses the Arabic "1-20 من 100". */
.suggestions-page[b-aabf8drgor]  .mud-table-page-number-information {
    direction: rtl;
}

/* The classification titles are long: two lines each, the full title in the tooltip, so the texts keep their room. */
.suggestions-page[b-aabf8drgor]  .clamped.tree {
    max-width: 8rem;
}

.suggestions-page[b-aabf8drgor]  .clamped:not(.tree) {
    min-width: 7rem;
    max-width: 14rem;
}

/* A timestamp wraps between date and time, never inside the date. */
.suggestions-page[b-aabf8drgor]  .timestamp {
    display: inline-block;
    max-width: 6rem;
}

/* Below 600px the table becomes cards with room to spare: show the full titles, which cannot be hovered there. */
@media (max-width: 599.98px) {
    .suggestions-page[b-aabf8drgor]  .clamped {
        display: inline;
        -webkit-line-clamp: unset;
        max-width: none;
        min-width: 0;
    }
}
/* /Components/Pages/Tags/ArticleTagsSection.razor.rz.scp.css */
/* A long unbroken type wraps inside the card. The link is MudLink's element, not this component's, so the rule reaches it
   from the section. */
section[b-exatybtj41]  .tag-link {
    overflow-wrap: anywhere;
}

/* A fragment keeps its line breaks, but a long one is cut to three lines here; the tag's page shows it whole. */
.tag-context[b-exatybtj41] {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.25rem;
}
/* /Components/Pages/Tags/RecommendationCard.razor.rz.scp.css */
/* A reason keeps the analyst's line breaks, as notes do. */
.recommendation-reason[b-uh4ui890sm] {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    margin: 0.5rem 0;
}
/* /Components/Pages/Tags/TagDetailsPage.razor.rz.scp.css */
/* The fragment keeps its line breaks, at the article page's size. */
.tag-details[b-d1t9w0xhxi]  .tag-context {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    font-size: 1.25rem;
    line-height: 2;
}

.tag-details[b-d1t9w0xhxi]  .info-field {
    height: 100%;
}

.tag-details[b-d1t9w0xhxi]  .info-field-value {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
/* /Components/Pages/Users/Users.razor.rz.scp.css */
/* Dim banned users, but keep their action buttons at full strength so enabled and disabled actions stay distinguishable. */
.users-page[b-khs7db6zyt]  .user-row-banned td:not(.users-actions) {
    opacity: 0.6;
}

/* The toolbar holds a title, filters and a button: let it wrap on narrow screens instead of overflowing. */
.users-page[b-khs7db6zyt]  .mud-table-toolbar {
    flex-wrap: wrap;
    height: auto;
    gap: 0.5rem;
    padding-block: 0.5rem;
}

.users-page[b-khs7db6zyt]  .users-filter {
    min-width: 8rem;
    max-width: 10rem;
}

.users-page[b-khs7db6zyt]  .users-search {
    min-width: 10rem;
}
/* /Components/Pages/WorkHours/WorkHours.razor.rz.scp.css */
/* MudBlazor forces direction: initial on the caption, which reverses the Arabic "1-20 من 100". */
.work-hours-page[b-zzr8vt7jy0]  .mud-table-page-number-information {
    direction: rtl;
}
/* /Components/Shared/TargetChangedChip.razor.rz.scp.css */
/* Text for screen readers only: the chip's hint, which sighted users get from its tooltip. */
.visually-hidden[b-90deobtcy6] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* /Components/Shared/TreePicker.razor.rz.scp.css */
.tree-picker[b-sni5ox8kvm]  .tree-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tree-picker[b-sni5ox8kvm]  .tree-column-title {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    font-weight: 700;
}

/* Legacy columns were 500px scrolling segments; shorter here so the button stays near. */
.tree-picker .tree-column-list[b-sni5ox8kvm] {
    max-height: 22rem;
    overflow-y: auto;
}

@media (max-width: 959.98px) {
    .tree-picker .tree-column-list[b-sni5ox8kvm] {
        max-height: 14rem;
    }
}
