/* Page: Board Mobile (#page-board) */

@media (max-width: 768px) {
    #page-board .container {
        padding: 0 0.5rem;
    }

    /* Horizontal scroll for filters */
    #page-board #boardCategoryFilter {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    #page-board #boardCategoryFilter .btn {
        flex: 0 0 auto;
    }

    /* Responsive Table Hiding */
    #page-board .table th:nth-child(5),
    /* LV */
    #page-board .table th:nth-child(6),
    /* Views */
    #page-board .table td:nth-child(5),
    #page-board .table td:nth-child(6),
    #page-board .table th:nth-child(7),
    /* Date (optional, keep if important) */
    #page-board .table td:nth-child(7) {
        display: none;
    }

    #page-board .table td,
    #page-board .table th {
        padding: 0.5rem 0.25rem;
        font-size: 0.9rem;
    }

    /* Adjust Author column width */
    #page-board .table th:nth-child(4),
    #page-board .table td:nth-child(4) {
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}