/* -------------------------------------------------
   FACULTY BOARD SECTION (2026 COLOR UPDATE)
---------------------------------------------------*/
.faculty-board-section {
    margin-top: 40px;
}

.fb-title {
    text-align: center;
    font-size: 30px;
    color: #800000; /* Maroon Primary */
    font-weight: 700;
    margin-bottom: 25px;
}

.fb-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 8px; /* Added for smoother look */
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.08);
}

.fb-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff; /* White Background */
    border: 1px solid #e0e0e0;
    font-size: 16px;
}

.fb-table th {
    background: #800000; /* Maroon Primary */
    color: #ffffff; /* White Text */
    text-align: left;
    padding: 14px 12px;
    font-weight: 600;
    border-bottom: 3px solid #D4AF37; /* Soft Gold Accent Under Header */
}

.fb-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

/* Zebra Striping */
.fb-table tr:nth-child(even) {
    background: #fffcf5; /* Very faint gold tint for readability */
}

/* Hover State */
.fb-table tr:hover {
    background: #fdf2f2; /* Very faint maroon tint on hover */
    transition: background 0.2s ease;
}

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

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