body {
    font-family: Arial, sans-serif;
    background: #f0f7f0;
}
h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 20px;
}
.table-responsive {
    border: none;
}
.table > thead > tr > th {
    background-color: #2e7d32;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border: none;
    font-size: 14px;
    white-space: nowrap;
    padding: 10px 8px;
}
.table > tbody > tr > td {
    text-align: center;
    vertical-align: middle;
    padding: 9px 8px;
    font-size: 14px;
    border-top: 1px solid #c8e6c9;
}
.table > tbody > tr > td:first-child {
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    color: #1b5e20;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #e8f5e9;
}
.table-striped > tbody > tr:nth-of-type(even) {
    background-color: #fff;
}
.table > tbody > tr:hover {
    background-color: #c8e6c9 !important;
}
