*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    background-color: #FFFAEB;
}
.header{
    display: flex;
    justify-content: center;
    padding: 10px 0;
    font-size: 23px;
    font-style: oblique;
}
.newbtn{
    display: flex;
    justify-content: center;
    padding: 45px 0;
}
.btn-1{
    border: 2px solid #FF8400;
    background-color: #FFF5D6;
    font-weight: bold;
    color: #130E01;
    font-size: 25px;
    width: 180px;
    height: 85px;
    border-radius: 20px;
}

.detail-form{
    display: none;
}
.detail-form-active{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 25px;
    font-weight: bold;
    gap: 20px;
    color: #130E01;
    border: 3px solid #FF8400;
    border-radius: 20px;
    margin: 1% 20%;
    padding: 2rem;
    background-color: #FFF5D6;
}

.detail-form .values{
    width: 25rem;
    height: 55px;
    border-radius: 7px;
    border: 1px solid #CF4307;
    font-size: 22px;
    padding: 7px;
    background-color: #FFFAEB;
}
.checkbox-read{
    display: flex;
    gap: 20px;
    flex-direction: row;
    margin: 7px;
}
.readornot{
    width: 2rem;
    height: 25px;
}
.submit-book{
    margin-top: 20px;
    background-color: #FFFAEB;
    border: 2px solid #FF8400;
    color: #130E01;
    width: 16rem;
    height: 50px;
    font-size: 25px;
    font-weight: bold;
    border-radius: 7px;
}
.display-card-design{
    width: 100%;
    margin: 3px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}
.book-card{
    border: 3px solid #EEEB0A;
    border-left: 7px solid #130e01;
    border-radius: 7px 13px 13px 7px;
    width: 14%;
    height: 25vh;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: #CF4307;
    color: #EDEBFA;
}

.remove-button, .toggle-read-btn{
    margin-top: 7px;
    background-color: #FBB99D;
    height: 1.6rem;
    font-size: 12px;
    padding: 4px;
    border-radius: 5px;
    border: 1px solid #EDBAE6;
}

.card-header{
    text-align: center;
    padding-top: 7px;
}
.card-body{
    text-align: center;
}






@media screen  and (max-width: 767px) {
    .detail-form-active{
        width: 80%;
        margin: auto;
    }
    .detail-form .values{
        width: 20rem;
    }
    .display-card-design{
        flex-direction: column;
    }
    .book-card{
        width: 50%;
        height: 35vh;
        margin: auto;
    } 
}