.committee-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    font-size: 14px;
}

.committee-table thead th {
    background: linear-gradient(
        135deg,
        rgba(31, 133, 249, 0.9),
        rgba(6, 147, 255, 0.7)
    );
    color: #fff;
    padding: 14px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.25);
}

.committee-table td {
    padding: 12px;
    border: 1px solid #e3e6f0;
    vertical-align: top;
}
.committee-table table tbody td {
    text-align: left !important;
}


.committee-table tbody tr:nth-child(even) {
    background-color: #f4f7ff;
}

.committee-table tbody tr:hover {
    background-color: rgba(25, 28, 188, 0.08);
    transition: 0.2s;
}

.committee-table td:first-child {
    text-align: center;
    font-weight: 600;
    width: 60px;
}
