body{
    margin: 0px;
}
.navi>ul{
    margin: 0px;
    padding: 0px;
    position: fixed;
    overflow: auto;
    width: 20%;
    height: 100%;
    background-color: #f1f1f1;
}
.navi ul li a{
    padding: 8px 4px;
    display: block;
    list-style: none;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
}
.navi ul li a:hover{
    background-color: rgba(51, 49, 49, 0.847);
    color: white;
}
.navi ul li a:active{
    background-color: rgb(28, 28, 29);
}
/* ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 25%;
    background-color: #f1f1f1;
    position: fixed;
    height: 100%;
    overflow: auto;
  }
  
  li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
  }
  
  li a.active {
    background-color: #04AA6D;
    color: white;
  }
  
  li a:hover:not(.active) {
    background-color: #555;
    color: white;
  } */
header {
    background-color: rgba(240, 240, 74, 0.908);
    margin: 0px;
    padding: 30px 0px;
    height: 50px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}
.intTbl{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.table{
    margin-top: 3rem !important;
    margin-bottom: 3rem;
    padding: 15px 0px;
    border: solid rgba(0, 0, 0, 0.748);
    font-size: 20px;
    box-shadow: -2px 2px 15px;
    border-radius: 10px;
    width: 450px;
    transition: 0.5s;
}
input[type="date"]{
    width: 180px;
    height: 30px;
    text-align: center;
    font-size: 15px;
    border: solid black 2px;
    box-sizing: border-box;
}
input[type="date"]:hover{
    height: 31px;
    width: 182px;
    border: solid rgba(0, 0, 0, 0.415);
    box-shadow: -2px 2px 15px rgb(77, 208, 208);
}
tr td{
    padding: 5px;
    width: 200px;
    /* border: solid rgb(51, 49, 49); */
}
.btn{
    margin: 10px 0px;
    width: 100px;
    height: 40px;
    font-size: 15px;
    background-color: rgb(27, 194, 65);
    border-radius: 10px;
}
.btn:hover{
    background-color: rgb(65, 246, 65);
    box-shadow: -2px 2px 15px rgb(45, 224, 45);
}
.btn:active{
    background-color: rgb(27, 194, 65);
}
h2{
    text-align: center;
    font-size: 27px;
    font-family:'Times New Roman', Times, serif;
    transition: 0.5s;
}
@media only screen and (max-width:600px){
    .table{
        width: 350px;
    }
    h2{
        font-size: 18px;
    }
}