/* inicio */
body {
    background-color: #f3f0f0;
    width: 90%;
    margin: auto;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 16px;
}

p, li {
    padding-bottom: 7px;
}

.pagina-inicial {
    width: 95%;
    margin: auto;
}
/* fim inicio */

/* Cabecalho */
.iconePesquisa {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 44px;
}

.iconePesquisaNome .buttonImg,
.iconePesquisa .buttonImg {
    border-radius: 3px;
    border: none;
    padding: 3px;
}

.iconePesquisaNome .inputText,
.iconePesquisa .inputText {
    border-radius: 3px;
    border: none;
    padding: 4.5px;
}   
/* Fim cabecalho */

/* select */
select {
    color: red;
}
/* fim select  */

/* tabela */
.divTable {
    margin-bottom: 25px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin: auto;
}

table caption {
    /* text-align: left; */
    color: #232526;
    font-weight: bold;
    padding-bottom: 7px;
}

table a,
details a {
    text-decoration: none;
    color: #232526;
}

td, th {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}
/* fim tabela */

/* details */   
details:last-child {
    margin-bottom: 21px;
}

.detailsPesquisaLivro.desktop {
    margin-bottom: 21px;
}

.divDetails.mobile {
    display: none;
}

.detailsPesquisaLivro.mobile {
    display: none;
}
/* fim details */

/* helper */
.displayNone {
    display: none;
}

.displayBlock {
    display: block;
}

.textOpacity {
    color: #232526;
    opacity: .8;
}

.textBlue,
.text-blue {
    color: blue;
}
.textRed,
.text-red {
    color: red;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.mb-1 {
    margin-bottom: 7px;
}

.mb-2 {
    margin-bottom: 14px;
}

.mb-3 {
    margin-bottom: 21px;
}

.pb-1 {
    padding-bottom: 7px;
}

.pb-2 {
    padding-bottom: 14px;
}

.pb-3 {
    padding-bottom: 21px;
}
/* fim helper */
@media (max-width: 960px) {
    .formPesquisaNome,
    .formPesquisa {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-top: 21px;
    }
}

@media (min-width:523px) {
    .formPesquisaNome {
        margin-top: -21px;
        padding-bottom: 7px;
    }            
}

@media (max-width:522px) {
    .iconePesquisa {
        border-bottom: none !important;
    }

    .formPesquisaNome {
        margin-top: -21px;
    }

    .selectLivro.desktop {
        display: none;
    }

    .detailsPesquisaLivro.desktop {
        display: none;
    }

    .detailsPesquisaLivro.mobile {
        display: block;
    }

    .divTable.desktop {
        display: none;
    }
    
    .divDetails.mobile {
        display: block;
    }

    .divDetailsFlex.mobile {
        display: flex;
        gap: 14px;
    }

    body {
        background-color: #050800;              
        color: #c9dfff;
    }

    h1 {
        text-align: center;
        color: #9e856c;
        text-shadow: 1px 1px #f3f0f0;
        padding: 25px
    }

    select {
        padding: 3px;
        color: #232526;
    }

    .textOpacity {
        color: #9e856c;
        /* text-shadow: 1px 1px #f3f0f0; */
        font-weight: normal;
        /* opacity: .7; */
    }

    .divDetails.mobile p a {                
        color: #c9dfff;
    }
}