/* styles.css */

/* Header styles */
table {
    font-family: "Vazirmatn";
    font-weight: 700;
    border-width: 0px;
}

thead {
    background-color: #001E4B;
    color: #FFF;
}

thead tr {
    background-color: #001E4B !important;
}

/* Body text color */
tbody {
    color: #001E4B;
}

/* Table row styles */
table tr:nth-child(odd) {
    background-color: #FCF8F1;
}

table tr:nth-child(even) {
    background-color: #D9E8FB;
}

th,
td {
    padding: 14px;
    text-align: center;
    border-width: 0px;
}

.right-radius {
    border-radius: 0px 15px 0px 0px;
}

.left-radius {
    border-radius: 15px 0px 0px 0px;
}


.head-border {
    border-width: 0px 1px 0px 1px;
    border-color: #FFF;
    border-style: solid;
}


.body-border {
    border-width: 0px 1px 0px 1px;
    border-color: #EC2027;
    border-style: solid;
}