*{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}
.parent{
    height: 900px;
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.parentBorder{
    height: 400px;
    width: 350px;
    border: 2px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3%;
}
.title{
    font-weight: 700;
}
#form{
    height: 400px;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3%;
}
.input{
    width: 230px;
}
.date{
    display: flex;
    justify-content: start;
    flex-direction: column;
}
.table{
    width: 100%;
    text-align: center;
}
#tbody{
    width: 100%;
    text-align: center;
}
.thead{
    background-color: yellow;
}
#tbody tr button{
    width: 100px;
    background-color: red;
    color: white;
    font-weight: 700;
}
.green{
    background-color: green !important;
}
.tbody{
    width: 100%;
    height: 100%;
}
.centerText{
    text-align: center;
    font-weight: 700;
}