*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
    overflow-x: hidden;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}
.container{
    display: flex;
    justify-content: center;
    background-color: rgb(212, 212, 212);
    width: 800px;
    border-radius: 15px;
}
.left{
    flex: 1;
    background-color: rgb(236, 188, 116);
    border-radius: 15px 0px 0px 15px;
}
.right{
    flex: 1;
}
.left-row-head{
    background-color: crimson;
    padding: 15px 0px;
    border-radius: 15px 0px 0px 0px;
}
.right-row-head{
    background-color: rgb(23, 20, 220);
    padding: 15px 0px;
    border-radius: 0px 15px 0px 0px;
}
.left-head{
    color: white;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.left-row1{
    display: flex;
    align-items: center;
    margin-top: 35px;
    padding: 8px 0px;
}
.left-row{
    display: flex;
    align-items: center;
    margin-top: 8px;
    padding: 8px 0px;
}
.left-label{
    font-size: 21px;
    font-weight: bolder;
    color: black;
    margin-left: 20px;
}
.left-input{
    padding: 8px;
    outline: none;
    border: none;
    border-radius: 4px;
    position: absolute;
    margin-left: 120px;
}
.left-input:focus{
    outline: none;
}
.left-row-btn{
    display: flex;
    justify-content: center;
    margin: 20px 0px;
}
.add{
    background-color: crimson;
    color: white;
    font-size: 20px;
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}
table,td,tr,th{
    border: 1px solid rgba(0, 0, 0, 0.26);
    border-collapse: collapse;
    text-align: center;
}
th{
    height: 40px;
}
td{
    height: 30px;
}
table{
    width: 400px;
}
.type{
    width: 90px;
}
.name{
    width: 140px;
}
.option{
    width: 70px;
}
