:root{
    --background: #EBECF0;
    --table-background: #ffffff;
    --primary: #101824;
    --gray: #A0A7B1;
    --odd-row: #f6f9ff;
    --gray-background: #EDEEF1;
    --gray-mid: #F1F2F6;
}

body{
    font-family: 'Poppins', sans-serif;
    display:flex;
    justify-content: center;
    align-items:center;
    background-color:#8D85B7;
    margin: 0px;
    padding: 0px;
}

.under-menu{
    width:100%;
    height:7vh;
    display:flex;
    justify-content: center;
}

.under-menu-content{
    width:100%;
    height:7vh;
    background-color: #8EACCD;
}

.under-menu-content ul{
    width:100%;
    padding:0px;
    display:flex;
    justify-content: space-around;
}

.under-menu-content ul li{
    list-style: none;
}

.under-menu-content a{
    text-decoration: none;
    color:#594B71;
}

.main-bar{
    width:100%;
    height:10vh;
    background-color: #8EACCD;
    display:flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-bottom: 2px solid #594B71;
}

.main-bar-wtp{
    width:50%;
    height:10vh;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.main-bar-wtp h2{
    font-size:2rem;
    color:#594B71;
}

.main-bar-wtp img{
    width:10%;
}

.table-widget{
    width:80%;
    background-color: #333;
    padding: 5px;
    border: 2px solid var(--gray-background);
    box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    text-align:center;
    overflow-x: auto;
}

.table-widget a{
    text-decoration: none;
    color:#594B71;

}

.table-widget table{
    width:100%;
    border-collapse: collapse;
}

.table-widget caption{
    font-size: 1.12rem;
    font-weight: 700;
    text-align:center;
    margin: 8px 0px;
    color: #9CAFAA;
}

.table-widget th{
    padding: 20px 16px;
    font-size: 0.875rem;
    color: #8D85B7;
    border:2px solid #8D85B7;
    
}

.table-widget thead{
    border-top: 2px solid var(--gray-background)
}

.table-widget tfoot{
    margin-top: 16px;
    border-top: 2px solid var(--gray-background)
}

.table-widget td {
    padding: 8px 16px;
    vertical-align: middle;
}

.table-widget tbody tr{
    cursor: pointer;
}

.table-widget tbody tr:nth-child(odd) {
    background-color: var(--odd-row);
}

.table-widget tbody tr:hover {
    background-color: #e2ecff;
}

.table-row-count{
    font-size: 0.8rem;
    font-weight: 700;
    background-color: var(--gray-mid);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
    border-radius: 8px;
}

.team-member-profile{
    display:flex;
    gap: 16px;
    align-items:center;
}

.profile-info{
    display:flex;
    flex-direction: column;
    gap:4px;
}

.profile-info__name{
    font-weight: 700;
    white-space: nowrap;
}

.team-member-profile img{
    width: 50px;
    height:50px;
    border-radius: 50%;
    object-fit: cover;
}

