.avc-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
    background-color: var(--table-background);

}


.avc-table .thead {
    background-color: var(--bs-primary);
    border-style: none !important;
}

.avc-table .thead tr th:first-child {
    border-radius: 20px 0px 0px 0px;
}

.avc-table .thead tr th:last-child {
    border-radius: 0px 20px 0px 0px;
}

.avc-table th,
td {
    text-align: center;
}

.avc-table th {
    font-weight: bold;
    font-size: 14.74px;
    text-transform: capitalize;
    color: var(--bs-white);
    padding: 14px 36px;

}

.avc-table td {
    font-size: 14px;
    font-weight: bold;
    color: var(--bs-primary);
    border: solid 1px var(--bs-black);
    border-style: none solid solid none;
    padding: 10px;

}


.avc-table tr:first-child td {
    border-top-style: solid;
}

.avc-table tr td:first-child {
    border-left-style: solid;
}