/* -------------------------------------------------
   FACULTY BOARD SECTION
---------------------------------------------------*/
.faculty-board-section {
    margin-top: 40px;
}

.fb-title {
    text-align: center;
    font-size: 30px;
    color: #0a2a70;
    font-weight: 700;
    margin-bottom: 25px;
}

.fb-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.fb-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #ddd;
    font-size: 16px;
}

.fb-table th {
    background: #0a2a70;
    color: #fff;
    text-align: left;
    padding: 12px;
    font-weight: 600;
}

.fb-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e6e6e6;
}

.fb-table tr:nth-child(even) {
    background: #f4f7fc;
}

.fb-table tr:hover {
    background: #eaf0ff;
}

/* Responsive */
@media (max-width: 768px) {
    .fb-title {
        font-size: 24px;
    }

    .fb-table th,
    .fb-table td {
        font-size: 14px;
        padding: 8px;
    }
}
