/*your custom style goes in this file*/
/*if you're overriding style blocks from genstyle.css, you only need to include the attributes you're overriding, not the whole block*/

.state-data-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-family: Arial, sans-serif !important;
    background-color: #ffffff !important;
    color: #333333 !important;
}

.state-data-table th,
.state-data-table td {
    border: 1px solid #cccccc !important;
    padding: 8px 12px !important;
    text-align: left !important;
}

.state-data-table th {
    background-color: #00274d !important; /* dark blue header */
    color: #ffffff !important;
}

.state-data-table tr:nth-child(even) {
    background-color: #f2f2f2 !important;
}

.state-data-table tr:hover {
    background-color: #e0e0e0 !important;
}