:root{
    --background: #EBECF0;
    --table-background: #ffffff;
    --primary: #101824;
    --gray: #A0A7B1;
    --odd-row: #f6f9ff;
    --gray-background: #EDEEF1;
    --gray-mid: #F1F2F6;
}

body{
    padding:0px;
    margin:0px;
    background-color:#8D85B7;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.upneann{
    font-size: 1.12rem;
    font-weight: 700;
    text-align: center;
    color: #594B71;
    margin: 0px;
    padding: 10px 10px;
}

.main-bar {
    width: 100%;
    height: 10vh;
    background-color: #8EACCD;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.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%;
}

.under-menu{
    width:100%;
    height:7vh;
    display:flex;
    justify-content: center;
}

.under-menu-content{
    width:80%;
    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;
}

.main-content{
    width:100%;
    height:auto;
    display:flex;
    justify-content: center;
    align-items: center;
}

.fafa-soon-text{
    width: 60%;
    height: 50vh;
    border-radius:50px;
    border: 2px solid #FCAB9B;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.fafa-soon-text h1{
    color:#594B71;
    font-size:4rem;
    text-align:center;
}

.fafa-soon-text h1:hover{
    color:#FCAB9B;

}

.table-widget{
    margin-top:4px;
    width:80%;
    background-color:#8EACCD;
    border: 2px solid #8D85B7;
    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;
}

.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;
    color: #594B71;
    background-color: #8D85B7;
    margin: 0px;
    padding: 10px 10px;
}

.table-widget th{
    padding: 20px 64px;
    font-size: 0.875rem;
    color:#594B71;
}

.table-widget th img{
    width:100%;
}

.table-widget thead{
    border-top: 2px solid var(--gray-background)
}

.table-widget thead tr {
    border-bottom: 2px solid #000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.colortitle {
    background-color: #8294C4;
    color: #594B71;
    padding: 20px 60px;
    width: 90%;
    text-align: center;
}
.colortitlet {
    background-color: #8EACCD;
    color: #594B71;
    padding: 20px 60px;
    width: 90%;
    text-align: center;
}

.colorcaption {
    background-color: #8D85B7;
    color: #594B71;
    padding: 20px 64px;
    width: 88%;
    text-align: center;
    border-radius: 10px 10px 0px 0px
}



.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;
}

