/* Adds the width and border to the table listing */
.tableListing {
    width: 100%;
    border: 1px solid #ddd;
    font-size: 12px;
    text-align: left;
    clear: both;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #f1f1f1;
}


/* Adds the background color to every odd table row in table listing */
.tableListing > tbody > tr:nth-of-type(2n+1) {
    background-color: #f9f9f9;
}
/* Adds the below styles to every table header and table row in table listing */
    .tableListing > thead > tr > th,
    .tableListing > tbody > tr > td {
        vertical-align: middle;
        padding: 8px 10px;
        border: 1px solid #ddd;
        border-left-width: 0;
        border-bottom-width: 0
    }

/* Removes the top border for a first row header as it is already being applied at table level */
.tableListing > thead > tr:first-child > th {
    border-top-width: 0;
}
/*Adds the table listing title to center*/
.tabletitle { text-align: center }

/* Adds the background color to fixed column in table listing */
.tableListing-fixed {
    position: sticky;
    left: 0;
    background-color: #f2f2f2;
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 1px groove #8c8c8c !important;
}

