/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
#components-reconnect-modal[b-67sj6k22y0] {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1400;
    overflow: hidden;
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
}

    #components-reconnect-modal[b-67sj6k22y0]::backdrop {
        background: rgba(10, 16, 28, 0.5);
    }

    #components-reconnect-modal.components-reconnect-show[b-67sj6k22y0],
    #components-reconnect-modal[open][b-67sj6k22y0],
    #components-reconnect-modal.components-reconnect-failed[b-67sj6k22y0],
    #components-reconnect-modal.components-reconnect-repeated-attempt[b-67sj6k22y0],
    #components-reconnect-modal.components-reconnect-paused[b-67sj6k22y0],
    #components-reconnect-modal.components-reconnect-resume-failed[b-67sj6k22y0],
    #components-reconnect-modal.components-pause[b-67sj6k22y0],
    #components-reconnect-modal.components-resume-failed[b-67sj6k22y0] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.components-reconnect-backdrop[b-67sj6k22y0] {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 12, 20, 0.5);
}

.components-reconnect-surface[b-67sj6k22y0] {
    width: min(480px, 100%);
    border-radius: var(--mud-default-borderradius, 12px);
    border: 1px solid var(--mud-palette-lines-default, #e0e0e0);
    background: var(--mud-palette-surface, #fff);
    box-shadow: var(--mud-elevation-24, 0 16px 30px rgba(0, 0, 0, 0.28));
    color: var(--mud-palette-text-primary, #1f2937);
    padding: 20px 20px 18px;
}

.components-reconnect-header[b-67sj6k22y0] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

    .components-reconnect-header h2[b-67sj6k22y0] {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.3;
    }

.components-reconnect-status-dot[b-67sj6k22y0] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mud-palette-warning, #f59e0b);
}

.components-reconnect-supporting[b-67sj6k22y0],
.components-reconnect-message[b-67sj6k22y0] {
    margin: 0;
    line-height: 1.45;
    font-size: 0.95rem;
}

.components-reconnect-supporting[b-67sj6k22y0] {
    color: var(--mud-palette-text-secondary, #52607a);
    margin-bottom: 14px;
}

.components-reconnect-message[b-67sj6k22y0] {
    font-weight: 500;
}

.components-reconnect-danger[b-67sj6k22y0] {
    color: var(--mud-palette-error, #b00020);
}

.components-reconnect-actions[b-67sj6k22y0] {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.components-reconnect-first-attempt-visible[b-67sj6k22y0],
.components-reconnect-repeated-attempt-visible[b-67sj6k22y0],
.components-reconnect-failed-visible[b-67sj6k22y0],
.components-pause-visible[b-67sj6k22y0],
.components-resume-failed-visible[b-67sj6k22y0] {
    display: none;
}

dialog[open].components-reconnect-show .components-reconnect-first-attempt-visible[b-67sj6k22y0],
dialog[open].components-reconnect-failed .components-reconnect-failed-visible[b-67sj6k22y0],
dialog[open].components-reconnect-repeated-attempt .components-reconnect-repeated-attempt-visible[b-67sj6k22y0],
dialog[open].components-reconnect-paused .components-pause-visible[b-67sj6k22y0],
dialog[open].components-pause .components-pause-visible[b-67sj6k22y0],
dialog[open].components-reconnect-resume-failed .components-resume-failed-visible[b-67sj6k22y0],
dialog[open].components-resume-failed .components-resume-failed-visible[b-67sj6k22y0] {
    display: block;
}

dialog[open].components-reconnect-show .components-rejoin-loader[b-67sj6k22y0],
dialog[open].components-reconnect-repeated-attempt .components-rejoin-loader[b-67sj6k22y0] {
    display: inline-flex;
}

dialog[open].components-reconnect-failed #components-reconnect-button[b-67sj6k22y0],
dialog[open].components-reconnect-paused #components-resume-button[b-67sj6k22y0],
dialog[open].components-pause #components-resume-button[b-67sj6k22y0],
dialog[open].components-reconnect-resume-failed #components-resume-button[b-67sj6k22y0],
dialog[open].components-resume-failed #components-resume-button[b-67sj6k22y0] {
    display: block;
}

.components-rejoin-loader[b-67sj6k22y0] {
    display: none;
    margin-bottom: 10px;
    gap: 8px;
}

    .components-rejoin-loader div[b-67sj6k22y0] {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: var(--mud-palette-primary, #594AE2);
        animation: reconnect-pulse-b-67sj6k22y0 1.2s infinite ease-in-out both;
    }

        .components-rejoin-loader div:nth-child(1)[b-67sj6k22y0] {
            animation-delay: -0.24s;
        }

        .components-rejoin-loader div:nth-child(2)[b-67sj6k22y0] {
            animation-delay: -0.12s;
        }

@keyframes reconnect-pulse-b-67sj6k22y0 {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

#components-reconnect-button[b-67sj6k22y0],
#components-resume-button[b-67sj6k22y0] {
    display: none;
    min-width: 92px;
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 999px;
    background-color: var(--mud-palette-primary, #594AE2);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}
/* /Components/Shared/GameSystemSelect.razor.rz.scp.css */
.game-system-select[b-3f5y013kmq] {
    position: relative;
    width: 100%;
}

.game-system-select__popover[b-3f5y013kmq] {
    width: 100%;
}

.game-system-select__panel[b-3f5y013kmq] {
    padding: 0.75rem;
}

.game-system-select__list[b-3f5y013kmq] {
    max-height: 18rem;
    overflow-y: auto;
}
/* /Components/Shared/ImageLibraryDialog.razor.rz.scp.css */
.image-library-dialog__item[b-v67hernd47] {
    height: 100%;
}

.image-library-dialog__preview[b-v67hernd47] {
    width: 100%;
    height: 8rem;
    border-radius: 6px;
}

.image-library-dialog__name[b-v67hernd47] {
    min-height: 2.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
/* /Components/Shared/LinkEditorDialog.razor.rz.scp.css */
.link-editor-dialog[b-5rsqc47hmb] {
    min-width: min(34rem, calc(100vw - 3rem));
}

.link-editor-dialog__title[b-5rsqc47hmb] {
    max-width: 36rem;
    padding-right: 1rem;
}

.link-editor-dialog__description[b-5rsqc47hmb] {
    color: var(--mud-palette-text-secondary);
}

.link-editor-dialog__preview[b-5rsqc47hmb] {
    background: color-mix(in srgb, var(--mud-palette-surface), var(--mud-palette-primary) 3%);
    border-radius: 6px;
}

.link-editor-dialog__preview-text[b-5rsqc47hmb] {
    color: var(--mud-palette-text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-editor-dialog__actions[b-5rsqc47hmb] {
    width: 100%;
    gap: 0.75rem;
}

@media (max-width: 600px) {
    .link-editor-dialog[b-5rsqc47hmb] {
        min-width: 0;
    }

    .link-editor-dialog__actions[b-5rsqc47hmb] {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .link-editor-dialog__actions > .mud-stack-row[b-5rsqc47hmb] {
        justify-content: flex-end;
    }
}
/* /Components/Shared/RichTextDisplay.razor.rz.scp.css */
.rich-text-display[b-6tuevkwyxz] {
    color: var(--mud-palette-text-primary);
    font-size: 1rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.rich-text-display[b-6tuevkwyxz]  h2,
.rich-text-display[b-6tuevkwyxz]  h3 {
    margin: 1.5rem 0 0.75rem;
}

.rich-text-display[b-6tuevkwyxz]  p {
    margin: 0 0 0.85rem;
}

.rich-text-display[b-6tuevkwyxz]  ul,
.rich-text-display[b-6tuevkwyxz]  ol {
    margin: 0 0 0.85rem 1.5rem;
    padding: 0;
}

.rich-text-display[b-6tuevkwyxz]  blockquote {
    border-left: 4px solid var(--mud-palette-primary);
    margin: 1rem 0;
    padding: 0.25rem 0 0.25rem 1rem;
    color: var(--mud-palette-text-secondary);
}

.rich-text-display[b-6tuevkwyxz]  pre {
    background: var(--mud-palette-background-grey);
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
}
/* /Components/Shared/RichTextEditor.razor.rz.scp.css */
.rich-text-editor-shell[b-3wx569ddph] {
    --rich-text-editor-radius: 8px;
    border: 1px solid var(--mud-palette-lines-inputs);
    border-radius: var(--rich-text-editor-radius);
    background: var(--mud-palette-surface);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

.rich-text-editor-shell:focus-within[b-3wx569ddph] {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 1px var(--mud-palette-primary);
}

.rich-text-editor-shell--readonly[b-3wx569ddph] {
    background: var(--mud-palette-background-gray);
}

.rich-text-editor__header[b-3wx569ddph] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem 0.5rem;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.rich-text-editor[b-3wx569ddph] {
    min-height: calc(var(--rich-text-editor-min-height) + 3.25rem);
}

.rich-text-editor[b-3wx569ddph]  .ql-toolbar.ql-snow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.5rem 0.625rem;
    border: 0;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    border-radius: var(--rich-text-editor-radius) var(--rich-text-editor-radius) 0 0;
    background: color-mix(in srgb, var(--mud-palette-surface), var(--mud-palette-primary) 4%);
}

.rich-text-editor-shell:has(.rich-text-editor__header) .rich-text-editor[b-3wx569ddph]  .ql-toolbar.ql-snow {
    border-radius: 0;
}

.rich-text-editor[b-3wx569ddph]  .ql-toolbar.ql-snow .ql-formats {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    margin-right: 0.375rem;
}

.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar button,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar button {
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    transition: background 120ms ease, color 120ms ease;
}

.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar button:hover,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar button:hover,
.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar button.ql-active,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar button.ql-active,
.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar .ql-picker-label:hover,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar .ql-picker-label:hover,
.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar .ql-picker-label.ql-active,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar .ql-picker-label.ql-active {
    background: color-mix(in srgb, var(--mud-palette-primary), transparent 88%);
    color: var(--mud-palette-primary);
}

.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar button:hover .ql-stroke,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar button:hover .ql-stroke,
.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar button.ql-active .ql-stroke,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar button.ql-active .ql-stroke,
.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke {
    stroke: var(--mud-palette-primary);
}

.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar button:hover .ql-fill,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar button:hover .ql-fill,
.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar button.ql-active .ql-fill,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar button.ql-active .ql-fill,
.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.rich-text-editor[b-3wx569ddph]  .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.rich-text-editor[b-3wx569ddph]  .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill {
    fill: var(--mud-palette-primary);
}

.rich-text-editor[b-3wx569ddph]  .ql-container.ql-snow {
    border: 0;
    border-radius: 0 0 var(--rich-text-editor-radius) var(--rich-text-editor-radius);
    color: var(--mud-palette-text-primary);
    font-family: inherit;
}

.rich-text-editor[b-3wx569ddph]  .ql-editor {
    min-height: var(--rich-text-editor-min-height);
    padding: 1rem 1.125rem 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
}

.rich-text-editor[b-3wx569ddph]  .ql-editor.ql-blank::before {
    color: var(--mud-palette-text-secondary);
    font-style: normal;
    left: 1.125rem;
    right: 1.125rem;
}

.rich-text-editor[b-3wx569ddph]  .ql-editor h2,
.rich-text-editor[b-3wx569ddph]  .ql-editor h3,
.rich-text-editor[b-3wx569ddph]  .ql-editor h4 {
    margin: 0.875rem 0 0.375rem;
    font-weight: 600;
    line-height: 1.25;
}

.rich-text-editor[b-3wx569ddph]  .ql-editor p,
.rich-text-editor[b-3wx569ddph]  .ql-editor ol,
.rich-text-editor[b-3wx569ddph]  .ql-editor ul,
.rich-text-editor[b-3wx569ddph]  .ql-editor blockquote,
.rich-text-editor[b-3wx569ddph]  .ql-editor pre {
    margin-bottom: 0.625rem;
}

.rich-text-editor[b-3wx569ddph]  .ql-editor blockquote {
    border-left: 3px solid var(--mud-palette-primary);
    color: var(--mud-palette-text-secondary);
    padding-left: 0.875rem;
}

.rich-text-editor[b-3wx569ddph]  .ql-editor img {
    display: block;
    max-width: 100%;
    max-height: 32rem;
    margin: 0.75rem auto;
    border-radius: 6px;
    object-fit: contain;
}

.rich-text-editor[b-3wx569ddph]  .ql-tooltip {
    display: none !important;
}

.rich-text-editor[b-3wx569ddph]  .ql-editor pre.ql-syntax {
    border-radius: 6px;
    padding: 0.875rem 1rem;
    background: var(--mud-palette-dark);
}
