/* Styles scoped for the committee page only */

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;600;700&family=Sarabun:wght@300;400;600;700&display=swap');

.committee-page body,
.committee-page {
    background: #f4f7fb;
    font-family: 'Kanit', 'Sarabun', sans-serif;
    color: #222;
}

.committee-page .banner {
    background: linear-gradient(120deg, #ff6b6b 0%, #ff8e8e 100%);
    color: #fff;
    padding: 3rem 0 2rem;
    text-align: center;
}

.committee-page .banner h1 {
    font-weight: 700;
    margin: 0;
}

.committee-page .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d94a4a;
    text-align: center;
    margin-bottom: .75rem;
}

.committee-page .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.committee-page .committee-card {
    border: 1px solid #ffd1d1;
    box-shadow: 0 6px 24px rgba(255, 107, 107, .12);
    border-radius: 18px;
}

/* Table theming without overriding Bootstrap structure */
.committee-page .table thead th {
    background: #ff6b6b;
    color: #fff;
    border-color: #ff6b6b;
}

.committee-page .table-striped tbody tr:nth-of-type(odd) {
    --bs-table-accent-bg: #fff7f7;
}

.committee-page .table-hover tbody tr:hover {
    background-color: #ffeaea;
}

/* Keep navbar links readable on the existing header background */
.committee-page .navbar .navbar-nav .nav-link {
    color: #ffffff;
}


