/* =============================================================
   MN-Sim-Forum – Forum-spezifische Styles
   ============================================================= */

/* =============================================================
   KATEGORIE-ÜBERSICHT
   ============================================================= */
.forum-category {
    margin-bottom: 28px;
}

.forum-category-header {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: var(--radius) var(--radius) 0 0;
    border-left: 4px solid var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.forum-boards-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.forum-boards-table thead th {
    background: #f8f9fa;
    border-bottom: 1px solid var(--color-border);
    padding: 8px 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.forum-boards-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background 0.15s;
}

.forum-boards-table tbody tr:last-child {
    border-bottom: none;
}

.forum-boards-table tbody tr:hover {
    background: #f8f9fa;
}

.board-cell-icon {
    width: 44px;
    text-align: center;
    padding: 14px 8px;
    color: var(--color-secondary);
    font-size: 1.3rem;
}

.board-cell-info {
    padding: 12px 14px;
}

.board-name {
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-primary);
}

.board-name a {
    color: var(--color-primary);
}

.board-name a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.board-description {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.board-cell-stats {
    padding: 12px 14px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    min-width: 80px;
}

.board-cell-stats .stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-text);
}

.board-cell-last {
    padding: 12px 14px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    min-width: 180px;
}

.board-cell-last .last-thread-title {
    display: block;
    color: var(--color-accent);
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

/* =============================================================
   THREAD-LISTE (BOARD-ANSICHT)
   ============================================================= */
.board-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.thread-list-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.thread-list-table thead th {
    background: #f8f9fa;
    border-bottom: 1px solid var(--color-border);
    padding: 9px 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.thread-list-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background 0.15s;
}

.thread-list-table tbody tr:last-child {
    border-bottom: none;
}

.thread-list-table tbody tr:hover {
    background: #f8f9fa;
}

.thread-cell-icon {
    width: 36px;
    text-align: center;
    padding: 12px 6px;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.thread-pinned .thread-cell-icon {
    color: var(--color-secondary);
}

.thread-locked .thread-cell-icon {
    color: var(--color-danger);
}

.thread-cell-title {
    padding: 12px 14px;
}

.thread-title {
    font-size: 0.95rem;
    font-weight: bold;
}

.thread-title a {
    color: var(--color-primary);
}

.thread-title a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.thread-meta {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 3px;
}

.thread-badge {
    display: inline-block;
    font-size: 0.68rem;
    padding: 1px 6px;
    border-radius: 10px;
    margin-right: 4px;
    font-weight: bold;
}

.badge-pinned {
    background: rgba(201,162,39,0.15);
    color: #8a6b0f;
    border: 1px solid rgba(201,162,39,0.4);
}

.badge-locked {
    background: #fef2f2;
    color: var(--color-danger);
    border: 1px solid rgba(220,38,38,0.3);
}

.thread-cell-stats {
    padding: 12px 14px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    min-width: 70px;
    white-space: nowrap;
}

.thread-cell-last {
    padding: 12px 14px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    min-width: 140px;
    white-space: nowrap;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--color-text-muted);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.4;
}

/* =============================================================
   THREAD-ANSICHT & POSTS
   ============================================================= */
.thread-header {
    margin-bottom: 16px;
}

.thread-header h2 {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-family: var(--font-main);
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.post-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    overflow: hidden;
}

.post-sidebar {
    width: 160px;
    flex-shrink: 0;
    background: #f8f9fa;
    border-right: 1px solid var(--color-border);
    padding: 14px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.post-author-avatar {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.post-author-name {
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--color-primary);
    word-break: break-word;
}

.post-author-citizen-nr {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.post-author-nationality {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.post-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta-bar {
    padding: 8px 14px;
    background: #f8f9fa;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-number {
    color: var(--color-accent);
    font-weight: bold;
}

.post-content {
    padding: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    flex: 1;
    word-break: break-word;
}

.post-content p {
    margin-bottom: 10px;
}

.post-content p:last-child {
    margin-bottom: 0;
}

/* =============================================================
   ANTWORTFORMULAR
   ============================================================= */
.reply-section {
    margin-top: 8px;
}

.reply-section .card-header {
    background: var(--color-accent);
}

.reply-no-citizen {
    background: #fffbeb;
    border: 1px solid var(--color-secondary);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    color: #92400e;
}

.new-thread-section {
    margin-top: 8px;
}

/* =============================================================
   PAGINIERUNG
   ============================================================= */
.pagination {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--color-accent);
    background: var(--color-surface);
    transition: background 0.15s;
}

.pagination a:hover {
    background: #eff6ff;
    text-decoration: none;
}

.pagination .current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* =============================================================
   SIM-EDITOR TOOLBAR
   ============================================================= */
.sim-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 10px;
    background: #f0f2f5;
    border: 1px solid var(--color-border);
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
}

.sim-toolbar + textarea {
    border-radius: 0 0 var(--radius) var(--radius) !important;
    border-top: none !important;
}

.sim-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.4;
    white-space: nowrap;
    transition: filter 0.15s, box-shadow 0.15s;
    background: #fff;
    color: #333;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.sim-btn:hover {
    filter: brightness(0.93);
    box-shadow: 0 2px 5px rgba(0,0,0,.15);
}

.sim-btn-handlung  { border-color: #9ca3af; color: #374151; }
.sim-btn-gedanken  { border-color: #a78bfa; color: #5b21b6; }
.sim-btn-telefon   { border-color: #60a5fa; color: #1d4ed8; }
.sim-btn-dokument  { border-color: #ca8a04; color: #713f12; }
.sim-btn-simoff    { border-color: #f87171; color: #991b1b; }
.sim-btn-fluestern { border-color: #6ee7b7; color: #065f46; }
.sim-btn-schreien  { border-color: #fbbf24; color: #92400e; }
.sim-btn-radio     { border-color: #67e8f9; color: #155e75; }

/* =============================================================
   SIM-BLÖCKE (Darstellung im Post)
   ============================================================= */

/* Gemeinsame Basis */
.sim-block {
    margin: 10px 0;
    padding: 10px 14px;
    border-radius: 5px;
    border-left: 4px solid transparent;
    position: relative;
    font-size: 0.93rem;
    line-height: 1.65;
}

.sim-block-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 1px 6px;
    border-radius: 3px;
    margin-bottom: 5px;
    opacity: 0.75;
}

/* HANDLUNG – grau, kursiv */
.sim-handlung {
    background: #f3f4f6;
    border-left-color: #9ca3af;
    color: #4b5563;
    font-style: italic;
}
.sim-handlung .sim-block-label {
    background: #e5e7eb;
    color: #374151;
}

/* GEDANKEN – lila, kursiv */
.sim-gedanken {
    background: #f5f3ff;
    border-left-color: #8b5cf6;
    color: #5b21b6;
    font-style: italic;
}
.sim-gedanken .sim-block-label {
    background: #ede9fe;
    color: #6d28d9;
}

/* TELEFON – blau, Monospace */
.sim-telefon {
    background: #eff6ff;
    border-left-color: #3b82f6;
    color: #1e40af;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}
.sim-telefon .sim-block-label {
    background: #dbeafe;
    color: #1d4ed8;
}

/* DOKUMENT – beige/braun, Monospace mit Rahmen */
.sim-dokument {
    background: #fffbeb;
    border-left-color: #d97706;
    border: 1px solid #fde68a;
    border-left-width: 4px;
    color: #713f12;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88rem;
}
.sim-dokument .sim-block-label {
    background: #fef3c7;
    color: #92400e;
}

/* SIM-OFF – rötlich, klar abgetrennt vom IC-Text */
.sim-simoff {
    background: #fef2f2;
    border-left-color: #ef4444;
    color: #7f1d1d;
    opacity: 0.85;
}
.sim-simoff .sim-block-label {
    background: #fee2e2;
    color: #991b1b;
}

/* FLÜSTERN – grün, klein, kursiv */
.sim-fluestern {
    background: #ecfdf5;
    border-left-color: #10b981;
    color: #065f46;
    font-size: 0.88rem;
    font-style: italic;
}
.sim-fluestern .sim-block-label {
    background: #d1fae5;
    color: #047857;
}

/* SCHREIEN – orange/gelb, größer, fett */
.sim-schreien {
    background: #fffbeb;
    border-left-color: #f59e0b;
    color: #78350f;
    font-weight: bold;
    font-size: 1.02rem;
    letter-spacing: 0.03em;
}
.sim-schreien .sim-block-label {
    background: #fde68a;
    color: #92400e;
}

/* RADIO/FUNK – cyan, Monospace */
.sim-radio {
    background: #ecfeff;
    border-left-color: #06b6d4;
    color: #155e75;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}
.sim-radio .sim-block-label {
    background: #cffafe;
    color: #0e7490;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 768px) {
    .forum-boards-table thead,
    .thread-list-table thead {
        display: none;
    }

    .board-cell-stats,
    .board-cell-last,
    .thread-cell-stats,
    .thread-cell-last {
        display: none;
    }

    .post-sidebar {
        width: 100px;
        padding: 10px 8px;
    }

    .post-author-avatar {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .profile-layout {
        flex-direction: column;
    }

    .profile-sidebar {
        width: 100%;
    }
}

/* =============================================================
   POST-SIGNATUR
   ============================================================= */
.post-signature {
    border-top: 1px solid var(--color-border);
    margin-top: 12px;
    padding: 10px 16px 4px;
    opacity: 0.72;
    font-size: 0.85rem;
}

/* =============================================================
   BEARBEITUNGSHINWEIS (edited_at)
   ============================================================= */
.post-edited-note {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-style: italic;
    padding: 4px 16px 6px;
}

/* =============================================================
   EDIT-BUTTON IN META-BAR
   ============================================================= */
.btn-edit-post {
    font-size: 0.72rem;
    padding: 2px 8px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text-muted);
    cursor: pointer;
    margin-left: auto;
    line-height: 1.4;
    transition: background 0.15s, color 0.15s;
}

.btn-edit-post:hover {
    background: #f3f4f6;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* =============================================================
   PROFIL-SEITE LAYOUT
   ============================================================= */
.profile-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.profile-sidebar {
    width: 200px;
    flex-shrink: 0;
}

.profile-content {
    flex: 1;
    min-width: 0;
}

.profile-nav {
    padding: 6px 0;
}

.profile-nav-link {
    display: block;
    padding: 8px 16px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}

.profile-nav-link:hover,
.profile-nav-link.active {
    background: #f3f4f6;
    border-left-color: var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
}

/* =============================================================
   SIGNATUR-VORSCHAU (Profil-Seite)
   ============================================================= */
.signature-preview {
    background: #f8f9fa;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
    padding: 12px 14px;
    min-height: 50px;
}

/* =============================================================
   ZEICHENZÄHLER
   ============================================================= */
.char-counter {
    font-size: 0.75rem;
}

/* =============================================================
   CHECKBOX-LABEL
   ============================================================= */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

/* =============================================================
   EDIT-MODAL (breitere Variante)
   ============================================================= */
.modal-box-lg {
    max-width: 760px;
    width: 95%;
}

/* =============================================================
   INLINE BB-TAGS
   ============================================================= */
.bb-underline {
    text-decoration: underline;
}

/* Externer Link mit Weiterleitungsseite */
a.bb-link-extern {
    color: var(--primary);
    text-decoration: underline;
    opacity: 0.9;
}
a.bb-link-extern:hover {
    opacity: 1;
}

/* =============================================================
   REDIRECT-SEITE
   ============================================================= */
.redirect-box {
    max-width: 560px;
    margin: 2rem auto;
}
.redirect-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.redirect-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}
.redirect-heading {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.25rem;
}
.redirect-url-box {
    background: #f1f5f9;
    border-radius: 6px;
    padding: 0.6rem 0.9rem;
    margin-bottom: 1rem;
    word-break: break-all;
}
.redirect-url-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    display: block;
    margin-bottom: 0.2rem;
}
.redirect-url-value {
    font-family: monospace;
    font-size: 0.85rem;
    color: #1e293b;
}
.redirect-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* =============================================================
   ADMIN – ALLGEMEIN
   ============================================================= */
.admin-page-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text);
}

/* Dashboard-Grid */
.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}
.admin-dashboard-card {
    display: block;
    text-align: center;
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: var(--text);
    border-radius: 10px;
    transition: box-shadow 0.15s, transform 0.15s;
}
.admin-dashboard-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--text);
}
.admin-dashboard-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.admin-dashboard-label {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.admin-dashboard-desc {
    font-size: 0.82rem;
    color: #64748b;
}

/* Split-Layout (Tabelle + Formular nebeneinander) */
.admin-split-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .admin-split-layout {
        grid-template-columns: 1fr;
    }
}

/* Admin-Tabelle */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.admin-table th,
.admin-table td {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: middle;
}
.admin-table th {
    background: #f8fafc;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}
.admin-table tbody tr:hover {
    background: #f8fafc;
}
.admin-table-actions {
    white-space: nowrap;
    text-align: right;
}

/* Visibility-Badges */
.vis-badge {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
}
.vis-public  { background: #dcfce7; color: #15803d; }
.vis-members { background: #dbeafe; color: #1d4ed8; }
.vis-admin   { background: #fef2f2; color: #b91c1c; }

/* Kleine Buttons */
.btn-xs {
    padding: 2px 8px;
    font-size: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    display: inline-block;
}
.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-danger {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}
.btn-danger:hover {
    background: #dc2626;
}

/* Formular-Zeile mit zwei Spalten */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}

/* mt-auto Hilfsklasse */
.mt-auto { margin-top: auto; }

/* =============================================================
   ADMIN – ROLLEN-TABELLE
   ============================================================= */
.admin-roles-table .role-col {
    text-align: center;
    width: 80px;
    font-size: 0.8rem;
}
.role-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    background: transparent;
}
.role-active {
    background: #dcfce7;
    border-color: #22c55e;
    color: #15803d;
}
.role-active:hover {
    background: #bbf7d0;
}
.role-inactive {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #94a3b8;
}
.role-inactive:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}
.admin-roles-legend {
    padding: 0.5rem 0;
    line-height: 2;
}

/* URL-Link-Dialog (für Toolbar) */
#url-dialog {
    display: none;
    position: fixed;
    z-index: 1100;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 1rem;
    min-width: 300px;
}
#url-dialog h4 {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
}
#url-dialog .form-group {
    margin-bottom: 0.6rem;
}
#url-dialog label {
    font-size: 0.82rem;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}
#url-dialog input {
    width: 100%;
    box-sizing: border-box;
}
#url-dialog-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* Toolbar-Trennlinie */
.toolbar-sep {
    display: inline-block;
    width: 1px;
    height: 22px;
    background: #d1d5db;
    margin: 0 4px;
    vertical-align: middle;
}

/* =============================================================
   MODERATOR-BUTTONS (Thread sperren / anpinnen)
   ============================================================= */
.btn-mod {
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.btn-mod:hover {
    background: #6d28d9;
}
.btn-mod:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* Kleiner Mod-Button (für Board-Tabellenspalte) */
.btn-mod.btn-xs {
    padding: 3px 8px;
    font-size: 0.78rem;
    border-radius: 5px;
}

/* Moderator-Spalte in der Thread-Tabelle */
.thread-cell-mod {
    white-space: nowrap;
    text-align: center;
    width: 80px;
}

/* Moderator-Aktionen-Block im Thread-Header */
.mod-actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}
