table{
    border-collapse: collapse;
    width: 100%;
}
td,th{
    padding: 10px;
}
/* Select only the first row */
tr:first-child{
        background: var(--primary-color)!important;
        color: white;
        text-align: center;
        font-weight: 600;
}
table td a{
color:var(--primary-color);    font-weight: 500;
}

/* Top Alignment */
.cmp-table--valign-top td,
.cmp-table--valign-top th {
    vertical-align: top;
}

/* Middle Alignment */
.cmp-table--valign-middle td,
.cmp-table--valign-middle th {
    vertical-align: middle;
}

/* Bottom Alignment */
.cmp-table--valign-bottom td,
.cmp-table--valign-bottom th {
    vertical-align: bottom;
}