/* Removes the extra margin overridden from UsageReports.css in individual user page */
.consumptionTableDiv .dataTables_wrapper {
    margin: 0px !important;
}

/* Adds the below styles to the progress bar in consumption listing */
.consumptionTableDiv .progress {
    height: 6px;
    margin: 0 auto;
    background: #eeeeee;
    cursor: pointer;
}

/* Adds the line-height and background color styles to the progress bar in consumption listing */
.consumptionTableDiv .progress-bar {
    line-height: 5px;
    background-color: #99cc68;
    cursor: default;
}

/* Adds the red background color to the progress bar when consumption exceeded */
.consumptionTableDiv .progress-bar.exceeded {
    background-color: #FF5052;
}

/* Removes the left padding of progress bar in subscription view and edit pages */
.consumptionTableDiv .subscriptionConsumptionColumn {
    padding-left: 0px;
}

/* Adds the bold property to the text (Total Consumption) in first row in consumption listing */
.consumptionTableDiv table thead tr:nth-child(2) td:nth-child(1) {
    font-weight: bold;
    border-top-width: 1px /* Adds the top border as application level style overridden with border 0 for this custom row */
}
/* Adds the top border to the row (Total Consumption) in consumption listing as application level style overridden with border 0 for this custom row */
.consumptionTableDiv table thead tr:nth-child(2) td {
    border-top-width: 1px
}
