body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#f5f7fb;
}

/* Header */

header{
    background:#1f3c88;
    color:white;
    text-align:center;
    padding:25px;
}

header h1{
    margin:0;
    font-size:32px;
}

header p{
    margin-top:5px;
}

/* Table Section */

.table-section{
    width:90%;
    max-width:900px;
    margin:40px auto;
}

/* Table */

table{
    width:100%;
    border-collapse:collapse;
    background:white;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

thead{
    background:#2f54eb;
    color:white;
}

th, td{
    padding:14px;
    text-align:left;
    border-bottom:1px solid #ddd;
}

tbody tr:hover{
    background:#f1f5ff;
}

/* Highlight Chairperson */

.chairperson{
    background:#fff8e1;
    font-weight:bold;
}

/* Footer */

footer{
    text-align:center;
    padding:15px;
    background:#1f3c88;
    color:white;
    margin-top:40px;
}

/* Responsive */

@media(max-width:600px){

    table{
        font-size:14px;
    }

    header h1{
        font-size:24px;
    }

}