.right{
   
    width: 88vw;
    height: 90vh;
}

.table-container{
    width:70%;
    margin: 70px auto;

}

.table {
    width:100%; 
    height: 70vh;
    overflow-y: scroll;
 
}

table {
    width: 99%;   
    border-collapse: collapse;
    margin: 0 auto;
    
}

thead th{
    position: sticky;
    top: 0;
    background: #291f1c;
    border-bottom: 5px solid black;
    border-radius: 8px 8px 0 0;
    text-align: center;
    padding: 10px 10px;
}

td {
    border-bottom: 1px solid black;
    padding: 6px 10px ;
    text-align: left;
    border-radius: 0px 0px 5px 5px;
    font-size: 16px;
}

tr{
    background-color: rgb(49, 49, 49);
    
}

tr:nth-of-type(even){
    background-color: rgb(77, 77, 77);
    
}

button{
    border: none;padding: 3px 15px;
    border-radius: 5px;
}

button:hover{
    cursor: pointer;
}

.approve{
    background-color: rgb(20, 119, 0);
}

.dis-approve{
    background-color: rgb(255, 0, 0);
}


.td_02 a{
    text-decoration: none;
    color: var(--font_color_01);
}

.td_01, .td_04{
    text-align: center;
    border-radius: 0px 0px 5px 0;
}
.td_02, .td_03 {
   padding-left: 30px;
    text-align: left;
}

.td_07{
    border-radius: 0px 0px 0 5px;
}



/* Custom column widths */
.col1 { width: 5%; }
.col2 { width: 20%; }
.col3 { width: 20%; }
.col4 { width: 10%; }

