#navbar{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
    margin-bottom: 50px;
}
#navbar>a{
    text-decoration: none;
    color: teal;
    font-size: 20px;

}
form{
  
    width: 30%;
    margin: auto;
    padding: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
input{
    width: 90%;
    height: 30px;
    margin-bottom: 20px;
    padding: 0px 10px 0px 10px;
}
select{
    margin-bottom: 20px;
}
#submit{
    width: 70%;
    background-color: rgb(157, 93, 216);
    color: antiquewhite;
    font-weight: bold;
    border: none;
    text-align: center;
    margin-left: 15%;
    border-radius: 10px;
    font-size: 20px;
   height: 40px;
}
main{
  width: 50%;
  margin: auto;
  text-align: center;

}
main>table{
    border: 1px solid blue;
}
main>table>thead{
    background-color: teal;
    color: white;
    font-weight: bold;
    height: 40px;

}
#tbody>tr>td{
    text-align: left;
    padding: 10px;
    background-color: rgb(179, 176, 182);
}
#tbody>tr>td:nth-child(4){
    text-align: center;
}
#tbody>tr>td:nth-child(5){
   color: rgb(255, 255, 255);
   background-color: blueviolet;
   cursor: pointer;
}