
/* Table*/
.tbl{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
table {
   
    width: 96%;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}
#sale-tbl{
    margin-top: 30px;
    border-collapse: separate;
font-size: 14px;
border-radius: 10px;
/*font-weight: bold;*/
}
#sale-tbl th {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  #sale-tbl tr:last-child td {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
    /*font-weight: bold;*/
   
}

th {
    background-color: #9dbcd1; /* Change this color as needed */
   
    color: #000;
}

tr:nth-child(odd) {
    background-color: #f0f0f0;
}

tr:nth-child(even) {
    background-color: #f0f0f0; /* Change this color as needed */
    color: #000;
}
