@media only screen and (max-width: 600px) {
    :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;
    }

    .main-bar-logo{
        font-size:0.650rem;
    }
    .main-bar-sm{
        font-size:0.650rem;
    }
    
    .table-widget{
        width:100%;
        padding:0px;
        background-color: #333;
        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:left;
        overflow-x: auto;
    }
    
    .imgwidth{
        width:70%;
    }
    
    .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;
    }
    
    .table-widget th {
        padding: 0px;
        font-size: 0.650rem;
        color: var(--gray);
        border: 2px solid var(--gray-background);
    }
    
    .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;
    }
    .under-menu{
        width:100%;
        height:7vh;
        display:flex;
        justify-content: center;
    }
    
    .under-menu-content{
        width:100%;
        height:7vh;
        background-color: #8EACCD;
        border: 2px solid #594B71;
    }
    
    .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;
    }
    
    
  }

  @media only screen and (min-width: 768px) and (max-width: 1024px){
    .table-widget {
        border-radius: 16px;
        width: 100%;
        background-color: #333;
        padding: 24px;
        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;
    }

    .under-menu{
        width:100%;
        height:7vh;
        display:flex;
        justify-content: center;
    }
    
    .under-menu-content{
        width:100%;
        height:7vh;
        background-color: #8EACCD;
        border: 2px solid #594B71;
    }
    
    .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;
    }


    

  }