body {
    font-family: Arial, sans-serif;
    margin: 0; /* Ensure no default margin around the body */
}

.table-container {
    width: 100%;
    padding: 10px;
    box-sizing: border-box; /* Include padding in the element's total width */
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border: 1px solid #000; /* Solid border for the table */
}

.custom-table th, .custom-table td {
    border: 1px solid #000; /* Solid border for cells */
    text-align: left;
    padding: 8px;
}

.custom-table thead {
    background-color: backgrou /* Light orange background */
}

.custom-table th {
    color: #333333; /* Dark grey text */
}

.custom-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}