.books{
    padding: 0.25rem 0.5rem;
    border: 1px solid #eee;
    border-radius: 6px 6px 0 0;
}

.night .books{
    border: 1px solid #444;
}

.bookslist{

}
.bookslist>div{
    padding: 0.25rem 0;
}

.bookslist>div textarea{
    width: 100%;
    height: 8rem;
    border: 1px solid #eee;
    padding: 0.5rem;
    display: block;
}

.night .bookslist>div textarea{
    background-color: #181a1b;
    border: 1px solid #444;
    color: #eee;
}

.bookslist>div>div{
    height: 1.4rem;
    line-height: 1.4rem;
    border: 1px solid #eeeeee;
    border-top: 0;
    padding-left: 0.5rem;
}

.night .bookslist>div>div{
    border: 1px solid #444;
    border-top: 0;
}

.bookslist>div>div span{
    margin-right: 0.5rem;
    font-size: 0.55rem;
    cursor: pointer;
    color: #06b672;
}

.bookslist>div>div span.bookdel{
    color: #ff7503;
}

.booksadd{
    height: 1.9rem;
    line-height: 1.9rem;
    text-align: center;
    border: 1px solid #eee;
    font-size: 0.6rem;
    cursor: pointer;
    background-color: #f9f9f9;
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
}

.night .booksadd{
    background-color: #242627;
    border: 1px solid #444;
    color: #bbb;
}

.divbuts{
    padding: 0.5rem;
    border: 1px solid #eee;
    border-top: 0;
    border-radius: 0 0 3px 3px;
}

.night .divbuts{
    border:1px solid #444;
    border-top:0;
}

.divbuts button{
    padding: 0.4rem 1rem;
    text-align: center;
    border: 0;
    background-color: #607D8B;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.divbuts button:nth-child(1) {
    background-color: #009688;
}

@media screen and (max-width: 390px){
    .divbuts button:nth-child(1){
        width: calc(50% - 0.25rem);
        float: left;
    }
    .divbuts button:nth-child(2){
        width: calc(50% - 0.25rem);
        float: right;
    }
}