body{
    background-color: #f0eef1;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.header {
    color: black;
    background-color: #fffbfb;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin: 0;
}

#logIn {
    padding: 10px;
    border-radius: 8px;
    width: 75px;
}

.addBookContainer {
    display: flex;
    justify-content: center;
    margin: 25px;
}

#addNewBook {
    background-color: #f0eef1;
    border-radius: 8px;
    font-size: 18px;
    width: 150px;
    height: 50px;
}


dialog {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.addBookForm{
    display: flex;
    flex-direction: column;
    width: 250px;
    font-size: 20px;
    gap: 6px;
    /* border-radius: 8px; */
    
}

.formTitle {
    font-size: 25px;
}

.submitContainer {
    display: flex;
    justify-content: center;
}

.formStatusButton {
    display: flex;
    justify-content: space-evenly;
}

#isReadButton {
    width: 18px;
    height: 18px;
    margin-top: 5px;
    accent-color: white;
}

.addBookForm input {
    font-size: 20px;
    padding: 5px;
}

#submitButton {
    background-color: chartreuse;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
}

.library{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
}

.book {
    display: flex;
    flex-direction: column;
    font-size: 23px;
    padding: 10px;
    width: 300px;
    border: solid 2px;
    border-radius: 8px;
    background-color: #fffbfb;
    /* line-height:0.5; */
    gap: 6px;
    margin: 25px;
    
}

#changeStatus {
    background-color: red;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

#deleteBook{
    background-color: #f0eef1;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;

}