* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
}

/* Table A(2b) */
.table {
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
    border-collapse: collapse;
    border: 2px solid #000;
}
.table th,
.table td{
    border: 1px solid #000;
    padding: 8px 12px;
    font-size: 14px;
    text-align: left;
}
.table thead th{
    line-height: 25px;
    text-align: center;
}
.number {
    text-align: right !important;
}
.vertical-align-middle {
    vertical-align: middle;
    text-align: center !important;
}
strong, .fw-bold {
    font-weight: bold;
}
.border-right-bold {
  border-right: 2px solid #000 !important;
}
.border-bottom-bold {
    border-bottom: 2px solid #000 !important;
}

/* Admin Table */
.admin-table{
    max-width: 1200px;
    width: 100%;
    margin: 30px auto;
    border-collapse: collapse;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}
th,
td {
    height: 50px;
    padding: 0 20px;
    vertical-align: middle;
}
.table__heading th {
    font-weight: 600;
    font-size: 1.7rem;
    background: #cfcbcb;
    border-top: 2px solid #cfcbcb;
    border-bottom: 2px solid #cfcbcb;
    border-right: 2px solid #fff ;
}
.table__heading th:first-child {
    border-left: 2px solid #cfcbcb ;
}
.table__heading th:last-child {
    border-right: 2px solid #cfcbcb;
}
td {
    font-weight: 500;
    border: 2px solid #cfcbcb;
}
.table__data:nth-child(even) {
    background: #f1eeee;
}
th:nth-child(odd){
    text-align: left;
}
.table__data .date, .table__data .posts, th:last-child {
    text-align: right;
}
.business__group{
    display: flex;
    align-items: center;
    gap: 15px;
}
.business__avatar-wraper{
    position: relative;
    display: flex;
}
.business__avatar{
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #cfcbcb;
}
.business__badge {
  position: absolute;
  top: 15px;
  left: 60%;
  width: 16px;
  height: 16px;
}
.business__badge .fa-shield {
  font-size: 16px;
  color: #0b4ea5;
}
.business__badge .fa-check {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: white;
}
.status-col{
    text-align: center;
}
.status{
    display: inline-block;
    padding: 7px;
    border-radius: 5px;
}
.status-active {
    background: #dfeee4;
    color: #1d8b37;
}
.status-not-found {
    background: #f7f1de;
    color: #e9c01c;
}