.forum-note {
    font-size: 0.875rem;
    color: #6c757d;
}

.rules-content {
    font-family: inherit;
    white-space: pre-wrap;
}

/* Таблица форумов */
.forum-actions .btn {
    min-width: 140px; /* чтобы кнопки были одной ширины и не “плясали” */
}

.table td:last-child,
.table th:last-child {
    width: 1%;
    white-space: nowrap; /* фиксируем колонку действий */
}

@media (max-width: 576px) {
    .forum-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .forum-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

/* Нейтрализуем ссылку форума, чтобы не конкурировала с кнопками */
.forum-link {
    color: inherit;
    text-decoration: none;
}

.forum-link .forum-name {
    text-decoration: underline;
    text-decoration-color: rgba(13, 110, 253, 0.35); /* мягкое “bootstrap-blue” */
    text-underline-offset: 2px;
}

.forum-link:hover {
    color: var(--bs-primary);
}