table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    flex: 0 1 auto; /* Prevent table from growing due to flex */
}

table th {
    background-color: #d3d3d3; /* Darker header background color */
    color: #333; /* Ensure text is readable */
    font-weight: bold;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Lighter body background color */
}

table tbody tr:nth-child(odd) {
    background-color: #e9e9e9; /* Slightly darker body background color for odd rows */
}

table tbody tr:hover {
    background-color: #f1f1f1;
}

.error-padding {
    padding: 8px;
}

.attribute-pre {
    margin-top: 16px;
}

.margin-top {
    margin-top: 16px;
}
