/* table */
.table-rr {
    width: 100%;
    border: none;
    border-collapse: separate;
    border-spacing: 0;
}
.table-rr thead th {
    font-weight: bold;
    text-align: left;
    border: none;
    padding: 10px 15px;
    background: #00000013;
    font-size: 14px;
    border-top: 1px solid #dee2e6;
}
.table-rr tr th:first-child, .table-rr tr td:first-child {
    border-left: 1px solid #dee2e6;
}
.table-rr tr th:last-child, .table-rr tr td:last-child {
    border-right: 1px solid #dee2e6;
}
.table-rr thead tr th:first-child {
    border-radius: 6px 0 0 0;
}
.table-rr thead tr th:last-child {
    border-radius: 0 6px 0 0;
}
.table-rr tbody td {
    align-items: center;
    border: none;
    padding: 6px;
    font-size: 14px;
}
.table-rr tbody tr:nth-child(even) {
    background: #EDEDED;
}
.table-rr tbody tr:last-child td{
    border-bottom: 1px solid #dee2e6;
}
.table-rr tbody tr:last-child td:first-child {
    border-radius: 0 0 0 6px;
}
.table-rr tbody tr:last-child td:last-child {
    border-radius: 0 0 6px 0;
}
.table-rr tbody tr {
    transition: all 0.3s;
}
.table-rr tbody tr:hover {
    background: #00000013;
}

/* button */
a.btn-rr {
    display: inline-flex;
    color: #1d75b3;
    padding: 3px 6px;
    background: #f4f4f4;
    border: 1px solid #d9d7d7;
    border-radius: 4px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
}

a.btn-rr:hover {
    background: #212529;
    border-color: #212529;
    color: white;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.6);
    transform: scale(115%);
}