button {
    font-size: 12px;
}

/* Table background color */
.myTable {
    background-color: #ffaa56;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

/* Maintain your original row colors */
#items_table tr:nth-child(odd) {
    background-color: #ffffff; /* Lighter background for odd rows */
}

#items_table tr:nth-child(even) {
    background-color: #e7f1ff; /* Slightly darker for even rows */
}

/* Ensure all normal table rows (rows 1-10) have consistent font */
.myTable tbody tr td {
    font-family: Arial;
    font-weight: normal;
    font-size: 16px !important; /* Ensure all normal rows are the same */
    color: #000000;
    text-align: left;
    padding: 7px;
    vertical-align: middle;
    border: 1px solid #000000;
    border-width: 0px 1px 1px 0px;
}

/* Keep Grand Total row with a bigger font */
.myTable tfoot tr {
    background-color: #ff751a !important;
    font-size: 24px !important;
    font-weight: bold;
    color: white;
}

/* Footer text alignment */
.myTable tfoot tr td {
    text-align: center;
    border-width: 0px 1px 0px 0px;
}

/* Ensure border-radius effects for corners */
.myTable tr:last-child td:last-child {
    border-width: 0px 0px 0px 0px;
}
.myTable tr:last-child td:first-child {
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.myTable tr:last-child td:last-child {
    -moz-border-radius-bottomright: 0px;
    -webkit-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.myTable tr:first-child td:first-child {
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
}
.myTable tr:first-child td:last-child {
    -moz-border-radius-topright: 0px;
    -webkit-border-top-right-radius: 0px;
    border-top-right-radius: 0px;
}

