﻿button.add-user:hover {
    background-color: rgba(0,255,0,.10);
}

button.remove-user:hover {
    background-color: rgba(255,0,0,.10);
}

button::after {
    font-family: "Font Awesome 5 Free";
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    position: absolute;
    font-size: 26px;
    top: 6px;
    right: 0;
    opacity: 0;
}

button.remove-user::after {
    content: "\f146";
    color: red;
}

button.add-user::after {
    content: "\f0fe";
    color: green;
}

button:hover::after {
    transition-duration: .5s;
    opacity: 1;
    right: 10px;
}

button {
    margin-bottom: 5px;
}

#table-div {
    margin-top: 20px;
    width: 100%;
}

#activeAgentsListTable > thead tr td {
    background-color: lightgrey;
}

#activeAgentsListTable > tbody td button {
    margin-right: 3px;
}

.remittanceTables thead tr td {
    background-color: lightgrey;
}

.report-header {
    text-align: center;
}

.container {
    max-width: 98%;
    margin-right: 20px !important;
    margin-left: 20px !important;
}

.csv-button {
    right: 35px;
    position: absolute;
    color: white;
}

.report-buttons-row {
    display: flex;
    flex-wrap: wrap;
}