/* _content/Enkidu.Server/Shared/DiscordPostViewer.razor.rz.scp.css */
/* Discord Dark Theme Color Tokens */
.discord-post-viewer[b-5fdf3nouhq] {
    --discord-bg-primary: #36393f;
    --discord-bg-secondary: #2f3136;
    --discord-bg-tertiary: #202225;
    --discord-bg-hover: #32353b;
    --discord-bg-modifier-hover: rgba(79, 84, 92, 0.16);
    --discord-bg-modifier-selected: rgba(79, 84, 92, 0.32);
    --discord-text-normal: #dcddde;
    --discord-text-muted: #72767d;
    --discord-text-link: #00b0f4;
    --discord-text-header: #ffffff;
    --discord-blurple: #5865f2;
    --discord-green: #3ba55c;
    --discord-yellow: #faa61a;
    --discord-red: #ed4245;
    --discord-embed-bg: #2f3136;
    --discord-code-bg: #2e3035;
    --discord-spoiler-bg: #202225;
    --discord-mention-bg: rgba(88, 101, 242, 0.3);

    background-color: var(--discord-bg-primary);
    color: var(--discord-text-normal);
    font-family: 'gg sans', 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.375;
    border-radius: 8px;
    padding: 16px;
    overflow: hidden;
}

/* Message Structure */
.discord-message[b-5fdf3nouhq] {
    display: flex;
    gap: 16px;
}

.discord-avatar[b-5fdf3nouhq] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.discord-message-content[b-5fdf3nouhq] {
    flex: 1;
    min-width: 0;
}

/* Header */
.discord-header[b-5fdf3nouhq] {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.discord-username[b-5fdf3nouhq] {
    font-weight: 500;
    color: var(--discord-text-header);
    cursor: default;
}

.discord-bot-tag[b-5fdf3nouhq],
.discord-webhook-tag[b-5fdf3nouhq] {
    background-color: var(--discord-blurple);
    color: white;
    font-size: 10px;
    font-weight: 500;
    padding: 1px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    vertical-align: middle;
}

.discord-webhook-tag[b-5fdf3nouhq] {
    background-color: var(--discord-green);
}

.discord-timestamp[b-5fdf3nouhq] {
    font-size: 12px;
    color: var(--discord-text-muted);
}

.discord-edited[b-5fdf3nouhq] {
    font-size: 10px;
    color: var(--discord-text-muted);
}

.discord-pinned[b-5fdf3nouhq] {
    font-size: 12px;
}

/* Text Content & Formatting */
.discord-text[b-5fdf3nouhq] {
    word-wrap: break-word;
    white-space: pre-wrap;
}

.discord-text[b-5fdf3nouhq]  code,
.discord-text[b-5fdf3nouhq]  .discord-inline-code {
    background-color: var(--discord-code-bg);
    padding: 2px 4px;
    border-radius: 3px;
    font-family: Consolas, 'Andale Mono WT', 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', monospace;
    font-size: 14px;
}

.discord-text[b-5fdf3nouhq]  pre,
.discord-text[b-5fdf3nouhq]  .discord-codeblock {
    background-color: var(--discord-code-bg);
    border-radius: 4px;
    padding: 8px;
    margin: 6px 0;
    overflow-x: auto;
    font-family: Consolas, 'Andale Mono WT', 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', monospace;
    font-size: 14px;
    white-space: pre;
}

.discord-text[b-5fdf3nouhq]  a,
.discord-text[b-5fdf3nouhq]  .discord-link {
    color: var(--discord-text-link);
    text-decoration: none;
}

.discord-text[b-5fdf3nouhq]  a:hover,
.discord-text[b-5fdf3nouhq]  .discord-link:hover {
    text-decoration: underline;
}

.discord-text[b-5fdf3nouhq]  .discord-spoiler {
    background-color: var(--discord-spoiler-bg);
    color: transparent;
    border-radius: 3px;
    padding: 0 2px;
    cursor: pointer;
    transition: background-color 0.1s ease, color 0.1s ease;
}

.discord-text[b-5fdf3nouhq]  .discord-spoiler:hover,
.discord-text[b-5fdf3nouhq]  .discord-spoiler.revealed {
    background-color: rgba(255, 255, 255, 0.1);
    color: inherit;
}

.discord-text[b-5fdf3nouhq]  blockquote {
    border-left: 4px solid var(--discord-text-muted);
    padding-left: 12px;
    margin: 8px 0;
}

.discord-text[b-5fdf3nouhq]  .discord-multiline-quote {
    background-color: var(--discord-bg-secondary);
    border-radius: 4px;
    padding: 8px 12px;
}

.discord-text[b-5fdf3nouhq]  .discord-mention {
    background-color: var(--discord-mention-bg);
    color: var(--discord-blurple);
    padding: 0 2px;
    border-radius: 3px;
    font-weight: 500;
    cursor: default;
}

.discord-text[b-5fdf3nouhq]  .discord-timestamp {
    background-color: var(--discord-bg-modifier-hover);
    padding: 0 2px;
    border-radius: 3px;
    cursor: default;
}

.discord-text[b-5fdf3nouhq]  .discord-emoji {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    object-fit: contain;
}

/* Embeds */
.discord-embed[b-5fdf3nouhq] {
    background-color: var(--discord-embed-bg);
    border-radius: 4px;
    border-left: 4px solid var(--discord-bg-tertiary);
    padding: 12px 16px 12px 12px;
    margin-top: 8px;
    max-width: 520px;
    display: grid;
    grid-template-columns: auto;
    position: relative;
}

.discord-embed-author[b-5fdf3nouhq] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.discord-embed-author .embed-author-icon[b-5fdf3nouhq] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.discord-embed-author a[b-5fdf3nouhq] {
    color: var(--discord-text-header);
    text-decoration: none;
    font-weight: 600;
}

.discord-embed-author a:hover[b-5fdf3nouhq] {
    text-decoration: underline;
}

.discord-embed-title[b-5fdf3nouhq] {
    font-weight: 600;
    color: var(--discord-text-header);
    margin-bottom: 8px;
}

.discord-embed-title a[b-5fdf3nouhq] {
    color: var(--discord-text-link);
    text-decoration: none;
}

.discord-embed-title a:hover[b-5fdf3nouhq] {
    text-decoration: underline;
}

.discord-embed-description[b-5fdf3nouhq] {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--discord-text-normal);
    white-space: pre-wrap;
    word-wrap: break-word;
}

.discord-embed-thumbnail[b-5fdf3nouhq] {
    position: absolute;
    top: 12px;
    right: 16px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

.discord-embed-fields[b-5fdf3nouhq] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.discord-embed-field[b-5fdf3nouhq] {
    flex: 1 0 100%;
    min-width: 0;
}

.discord-embed-field.inline[b-5fdf3nouhq] {
    flex: 1 0 calc(33.333% - 8px);
    max-width: calc(33.333% - 8px);
}

.discord-embed-field-name[b-5fdf3nouhq] {
    font-weight: 600;
    font-size: 14px;
    color: var(--discord-text-header);
    margin-bottom: 2px;
}

.discord-embed-field-value[b-5fdf3nouhq] {
    font-size: 14px;
    color: var(--discord-text-normal);
    word-wrap: break-word;
}

.discord-embed-image[b-5fdf3nouhq] {
    max-width: 100%;
    max-height: 300px;
    border-radius: 4px;
    margin-top: 8px;
    object-fit: contain;
}

.discord-embed-footer[b-5fdf3nouhq] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--discord-text-muted);
}

.discord-embed-footer .embed-footer-icon[b-5fdf3nouhq] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.discord-embed-footer .footer-separator[b-5fdf3nouhq] {
    margin: 0 4px;
}

/* Reactions */
.discord-reactions[b-5fdf3nouhq] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.discord-reaction[b-5fdf3nouhq] {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--discord-bg-secondary);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 4px 8px;
    cursor: default;
    transition: background-color 0.1s ease;
}

.discord-reaction:hover[b-5fdf3nouhq] {
    background-color: var(--discord-bg-modifier-hover);
}

.discord-reaction .reaction-emoji-unicode[b-5fdf3nouhq] {
    font-size: 16px;
    line-height: 1;
}

.discord-reaction .reaction-emoji-img[b-5fdf3nouhq] {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.discord-reaction .reaction-count[b-5fdf3nouhq] {
    font-size: 14px;
    font-weight: 500;
    color: var(--discord-text-muted);
}

/* Attachments */
.discord-attachment-image[b-5fdf3nouhq] {
    margin-top: 8px;
    position: relative;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
}

.discord-attachment-image img[b-5fdf3nouhq] {
    display: block;
    border-radius: 4px;
    max-width: 100%;
}

.discord-attachment-image.spoiler[b-5fdf3nouhq] {
    cursor: pointer;
}

.discord-attachment-image.spoiler img[b-5fdf3nouhq] {
    filter: blur(44px);
    transition: filter 0.2s ease;
}

.discord-attachment-image .spoiler-overlay[b-5fdf3nouhq] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--discord-text-header);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    pointer-events: none;
}

.discord-attachment-file[b-5fdf3nouhq] {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--discord-bg-secondary);
    border: 1px solid var(--discord-bg-tertiary);
    border-radius: 4px;
    padding: 10px;
    margin-top: 8px;
    max-width: 400px;
}

.discord-attachment-file .file-icon[b-5fdf3nouhq] {
    color: var(--discord-text-muted);
    flex-shrink: 0;
}

.discord-attachment-file .file-info[b-5fdf3nouhq] {
    flex: 1;
    min-width: 0;
}

.discord-attachment-file .file-name[b-5fdf3nouhq] {
    display: block;
    color: var(--discord-text-link);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-attachment-file .file-name:hover[b-5fdf3nouhq] {
    text-decoration: underline;
}

.discord-attachment-file .file-size[b-5fdf3nouhq] {
    display: block;
    font-size: 12px;
    color: var(--discord-text-muted);
}

.discord-attachment-file .file-download[b-5fdf3nouhq] {
    color: var(--discord-text-muted);
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.1s ease;
}

.discord-attachment-file .file-download:hover[b-5fdf3nouhq] {
    background-color: var(--discord-bg-modifier-hover);
    color: var(--discord-text-normal);
}

/* Reply Reference */
.discord-reply-reference[b-5fdf3nouhq] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--discord-text-muted);
    margin-bottom: 4px;
    margin-left: 56px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-reply-reference .reply-icon[b-5fdf3nouhq] {
    color: var(--discord-text-muted);
    flex-shrink: 0;
}

.discord-reply-reference .reply-author[b-5fdf3nouhq] {
    font-weight: 500;
    color: var(--discord-text-normal);
    flex-shrink: 0;
}

.discord-reply-reference .reply-content[b-5fdf3nouhq] {
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.64;
}

/* Loading/Error/Empty States */
.discord-loading[b-5fdf3nouhq],
.discord-error[b-5fdf3nouhq],
.discord-empty[b-5fdf3nouhq] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 16px;
    color: var(--discord-text-muted);
}

.discord-error[b-5fdf3nouhq] {
    color: var(--discord-red);
}

.discord-error .error-icon[b-5fdf3nouhq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--discord-red);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.discord-loading .spinner-border[b-5fdf3nouhq] {
    color: var(--discord-blurple);
}
/* _content/Enkidu.Server/Shared/EmojiPicker.razor.rz.scp.css */
.emoji-picker[b-k4n7mdafja] {
    width: 100%;
}

.emoji-picker-dropdown[b-k4n7mdafja] {
    max-height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.emoji-scroll-container[b-k4n7mdafja] {
    flex: 1;
    overflow-y: auto;
    max-height: 250px;
}

.emoji-grid[b-k4n7mdafja] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 4px;
}

.emoji-item[b-k4n7mdafja] {
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.emoji-item:hover[b-k4n7mdafja],
.emoji-item.highlighted[b-k4n7mdafja] {
    background-color: var(--bs-primary-bg-subtle, #cfe2ff);
    border-color: var(--bs-primary-border-subtle, #9ec5fe);
}

.emoji-item:focus[b-k4n7mdafja] {
    outline: none;
    box-shadow: 0 0 0 2px var(--bs-primary-bg-subtle, #cfe2ff);
}

.emoji-img[b-k4n7mdafja] {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.emoji-unicode[b-k4n7mdafja] {
    font-size: 1.5rem;
    line-height: 1;
}

/* Custom scrollbar for emoji container */
.emoji-scroll-container[b-k4n7mdafja]::-webkit-scrollbar {
    width: 8px;
}

.emoji-scroll-container[b-k4n7mdafja]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.emoji-scroll-container[b-k4n7mdafja]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.emoji-scroll-container[b-k4n7mdafja]::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
/* _content/Enkidu.Server/Shared/FilteredUserList.razor.rz.scp.css */
.filtered-user-list[b-9ao87wczc9] {
    display: flex;
    flex-direction: column;
}

.filtered-user-list-items[b-9ao87wczc9] {
    max-height: 400px;
    overflow-y: auto;
}

.filtered-user-list-row[b-9ao87wczc9] {
    cursor: default;
    background-color: var(--bg-card);
    transition: background-color 0.15s ease;
}

.filtered-user-list-row:hover[b-9ao87wczc9] {
    background-color: var(--table-hover-bg) !important;
}

.filtered-user-list-row .form-check-input[b-9ao87wczc9] {
    cursor: pointer;
}

.filtered-user-list-row img[b-9ao87wczc9] {
    flex-shrink: 0;
}

.user-id-text[b-9ao87wczc9] {
    font-size: 0.75rem;
}

.nav-tabs .nav-link[b-9ao87wczc9] {
    cursor: pointer;
}

.nav-tabs .nav-link:not(.active):hover[b-9ao87wczc9] {
    border-color: transparent;
    background-color: var(--table-hover-bg);
}
/* _content/Enkidu.Server/Shared/LoginDisplay.razor.rz.scp.css */
.login-display[b-6z65vnispb] {
    position: relative;
}

.user-menu-button[b-6z65vnispb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.user-menu-button:hover[b-6z65vnispb] {
    background-color: var(--table-hover-bg);
    border-color: var(--text-muted);
}

.user-menu-button:focus[b-6z65vnispb] {
    outline: none;
    box-shadow: var(--focus-ring);
}

.user-avatar[b-6z65vnispb] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name[b-6z65vnispb] {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-chevron[b-6z65vnispb] {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.15s ease;
}

.dropdown-backdrop[b-6z65vnispb] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

[b-6z65vnispb] .dropdown-menu {
    min-width: 180px;
    z-index: 1001;
    margin-top: 0.25rem;
}

[b-6z65vnispb] .dropdown-header {
    padding: 0.5rem 1rem;
}

[b-6z65vnispb] .dropdown-divider {
    border-top-color: var(--border-color);
}
/* _content/Enkidu.Server/Shared/MainLayout.razor.rz.scp.css */
.page[b-djv5ip5zt2] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-djv5ip5zt2] {
    flex: 1;
}

.sidebar[b-djv5ip5zt2] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-djv5ip5zt2] {
    background-color: var(--bg-topbar);
    border-bottom: 1px solid var(--border-color);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

    .top-row[b-djv5ip5zt2]  a, .top-row .btn-link[b-djv5ip5zt2] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-djv5ip5zt2] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-djv5ip5zt2] {
        display: none;
    }

    .top-row.auth[b-djv5ip5zt2] {
        justify-content: space-between;
    }

    .top-row a[b-djv5ip5zt2], .top-row .btn-link[b-djv5ip5zt2] {
        margin-left: 0;
    }
}

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

    .sidebar[b-djv5ip5zt2] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-djv5ip5zt2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-djv5ip5zt2], article[b-djv5ip5zt2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/Enkidu.Server/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xk2801yn17] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-xk2801yn17] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-xk2801yn17] {
    font-size: 1.1rem;
}

.oi[b-xk2801yn17] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-xk2801yn17] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xk2801yn17] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xk2801yn17] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xk2801yn17]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-xk2801yn17]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-xk2801yn17]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-xk2801yn17] {
        display: none;
    }

    .collapse[b-xk2801yn17] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-xk2801yn17] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/Enkidu.Server/Shared/ThemeToggle.razor.rz.scp.css */
.theme-toggle[b-hfvsntisqx] {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.theme-toggle:hover[b-hfvsntisqx] {
    background-color: var(--table-hover-bg);
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.theme-toggle .oi[b-hfvsntisqx] {
    font-size: 1rem;
    vertical-align: middle;
}
/* _content/Enkidu.Server/Shared/UserSelector.razor.rz.scp.css */
.user-selector-dropdown[b-w6oh2jvj8q] {
    position: absolute;
    z-index: 1050;
    max-height: 350px;
    overflow-y: auto;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.user-selector-dropdown .dropdown-item[b-w6oh2jvj8q] {
    cursor: pointer;
}

.user-selector-dropdown .dropdown-item:hover[b-w6oh2jvj8q],
.user-selector-dropdown .dropdown-item.active[b-w6oh2jvj8q] {
    background-color: var(--bs-primary);
    color: white;
}

.user-selector-dropdown .dropdown-item.active .text-muted[b-w6oh2jvj8q],
.user-selector-dropdown .dropdown-item:hover .text-muted[b-w6oh2jvj8q] {
    color: rgba(255, 255, 255, 0.7) !important;
}

.user-selector-dropdown .dropdown-item.active .badge[b-w6oh2jvj8q],
.user-selector-dropdown .dropdown-item:hover .badge[b-w6oh2jvj8q] {
    opacity: 0.9;
}

.user-selector-dropdown .user-id-text[b-w6oh2jvj8q] {
    font-family: monospace;
    font-size: 0.75rem;
}

.user-selector-dropdown img[b-w6oh2jvj8q] {
    object-fit: cover;
    flex-shrink: 0;
}
