*{
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    
}

.nav{
    height: 75px;
    background-color: #AEFEB3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.logo{
    height: 30px;
    padding-right: 20px;
}

.back-icon{
    height: 50px;
    margin-left: 20px;
    cursor: pointer;
    
}

.main{
    padding-top: 75px;
    padding-left: 15px;
    padding-right: 15px;
}

table{
    border: 1px solid black;
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
}

th{
    width: 200px;
    height: 50px;
    border: 1px solid black;
    
}
td{
    padding-left: 5px;
    border: 1px solid black;
}

tr{
    height: 50px;
    border: 1px solid black;
}

tr:nth-child(odd){
    background-color: #BFF6C3;
}

tr:nth-child(even){
    background-color: #E0FBE2;
}

body{
    width: 100%;
    height: 100%;
    background-color: #e7fbe8;
}

.title{
    text-align: center;
    padding-top: 30px;
}

.approve-btn,.reject-btn{
    width: 80px;
    height: 30px;
    border: none;
    background-color: rgb(15, 185, 15);
    font-size: 15px;
    font-weight: 500;
    border-radius: 3px;
    color:black;
    cursor: pointer;
}

.reject-btn{
    background-color: rgb(247, 28, 28);
}

.approve-btn:hover{
    background-color: green;
    box-shadow: 0.5px 0.5px 3px black;
    color: white;
}

.reject-btn:hover{
    background-color: rgb(194, 0, 0);
    box-shadow: 0.5px 0.5px 3px black;
    color: white;
}

