.forum-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.forum-table th {
    text-align: left;
    padding: 10px;
    background: #f1f1f1;
    border-bottom: 2px solid #ddd;
}

.forum-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.forum-table tr:hover {
    background: #fafafa;
}

.forum-table .title {
    font-weight: 500;
    color: #222;
}

.forum-table .title:hover {
    text-decoration: underline;
}

.excerpt {
    font-size: 13px;
    color: #777;
    margin-top: 3px;
}

.pagination {
    margin-top: 20px;
}

.pagination a {
    margin-right: 5px;
    padding: 5px 10px;
    border: 1px solid #ddd;
}

.pagination a.active {
    background: #111;
    color: #fff;
}
.forum-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.forum-table th {
    text-align: left;
    padding: 12px;
    background: #f5f5f5;
    font-weight: 500;
    color: #666;
}

.forum-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #eee;
}

.forum-table tr:hover {
    background: #fafafa;
}

.title {
    font-weight: 500;
    font-size: 15px;
}

.excerpt {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* ===== FORUM LIST ===== */
.forum-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 14px 16px;
    transition: 0.2s;
}

.forum-item:hover {
    background: #f5f7fb;
}

.forum-left {
    flex: 1;
}

.forum-title {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.forum-title:hover {
    color: #007bff;
}

.forum-meta {
    font-size: 13px;
    color: #888;
}

.forum-right {
    text-align: right;
    font-size: 13px;
    color: #666;
    min-width: 100px;
}