/* CSS RESPONSAVEL PELO PAINEL QUE O USUARIO ACESSA NO SITE */


/* 
    LIVROS
*/
div#biblioteca {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    padding: 20px 20px 35px;
}
div#biblioteca img {
    width: 100%;
}
div#biblioteca h5 {
    margin-top: 5px;
    font-size: 19px;
}

div#biblioteca .content_buttons {
    display: flex;
    justify-content: center;
}
div#biblioteca .content_buttons .btn {
    width: 100%;
    color: #fff;
}

div#biblioteca .null_rows {
    display: flex;
    justify-content: center;
    width: 100%;
}
div#biblioteca .null_rows p {
    margin-bottom: 0;
}

/* ////////////////////////////////// */
.col-md-2 {
    width: 200px;
}

@media (max-width: 991px) {
    div#biblioteca {
        justify-content: center;
    }
}

.form-perfil :is(.col-md-6, .col-md-4) {
    padding: 0 !important;
}
.form-perfil .md-3 > .row {
    margin: 0 !important;
}

/* 
    LOGAR
*/

.form-login {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    border: 2px solid #222;
    padding: 20px;
    border-radius: 5px;
    gap: 20px;
    box-shadow: 0px 0px 10px #717171;
}
.form-login p {
    margin-bottom: 0;
}

.form-login a.btn-register {
    color: #EAB251;
    background-color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 7px 15px;
    font-size: 14px;
}

/* 
    REGISTRAR
*/

.form-register {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    border: 2px solid #222;
    padding: 20px;
    border-radius: 5px;
    gap: 20px;
    box-shadow: 0px 0px 10px #717171;
}
.form-register p {
    margin-bottom: 0;
}

.form-register a.btn-register {
    color: #EAB251;
    background-color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 7px 15px;
    font-size: 14px;
}

.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}


/* 
    PERFIL
*/


.title-painel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.title-painel h4 {
    margin-bottom: 0px;
}

/*///////////////////////////////*/
.title-painel .nav-pills>li {
    float: left;
}
.title-painel .nav>li {
    position: relative;
    display: block;
}
.title-painel .nav-pills>li.active>a, .title-painel .nav-pills>li.active>a:focus, .title-painel .nav-pills>li.active>a:hover {
    color: #fff;
    background-color: #337ab7;
}
.title-painel .nav-pills>li>a {
    border-radius: 4px;
    color: #1DC7EA;
}
.title-painel .nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
}
.title-painel .nav-pills {
    display: flex;
    justify-content: end;
}
.title-painel .nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.title-painel .nav>li.disabled>a {
    color: #777;
}
.title-painel .nav-pills>li>a {
    text-decoration: none;
    border-radius: 4px;
}
.title-painel .nav-pills>li+li {
    margin-left: 2px;
}
.title-painel .nav-pills>li.disabled>a {
    cursor: no-drop;
}

/*///////////////////////////////*/
.form-perfil {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}
.form-perfil p {
    margin-bottom: 0;
}
.form-perfil a.btn-perfil {
    color: #EAB251;
    background-color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 7px 15px;
    font-size: 14px;
}
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}


/*///////////////////////////////*/

#formLike {
    width: 25% !important;
}
.btn-heart {
    width: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-edit-book {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}