* {
    font-family: Arial, Helvetica, sans-serif !important;
}
html, body {
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    scroll-behavior: smooth;
}

p {
    font-size: 14px;
}

a {
    color: #006699
}

a:visited {
    color: #006699
}

.site-header {
    background-image: url(../images/header.jpg);
    background-position: top right;
    background-repeat: no-repeat;
}

.site-header table {
    font-size: 10px;
    line-height: normal;
}

.site-header .date {
    color: #000080;
    font-size: small;
    line-height: normal;
    font-family: Verdana, Arial, Helvetica;
    margin: 5px;
}

.site-header .menu {
    color: #000000;
    text-decoration: none;
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: normal;
}

.site-header .menu:hover {
    text-decoration: underline;
}

.site-main {
    text-align: center;
    background-color:#FFFFFF;
    margin-left: 122px;
    padding: 40px 60px;
}

.welcome {
    width: 600px;
    margin: auto;
}

.books-sidebar {
    position: fixed;
    top: 52px;
    left: 0;
    width: 122px;
    height: 100%;
    max-height: 100vh;
    text-align: center;
    padding: 30px 0;
    padding-left: 8px;
    background-color: #0063AD;
    overflow-y: auto;
    scroll-behavior: smooth;
}

  .books-sidebar {
    overflow-y: auto; /* Certifique-se de que a barra de rolagem está ativada */
  }

  /* Estiliza a barra de rolagem inteira */
  .books-sidebar::-webkit-scrollbar {
    width: 8px; /* Largura da barra de rolagem */
  }
  
  /* Estiliza o trilho da barra de rolagem */
  .books-sidebar::-webkit-scrollbar-track {
    background: transparent; /* Fundo transparente do trilho */
    border-radius: 10px; /* Bordas arredondadas do trilho */
  }
  
  /* Estiliza o polegar da barra de rolagem */
  .books-sidebar::-webkit-scrollbar-thumb {
    background: #888; /* Cor do polegar */
    border-radius: 10px; /* Bordas arredondadas do polegar */
  }
  
  /* Estiliza o polegar da barra de rolagem ao passar o mouse */
  .books-sidebar::-webkit-scrollbar-thumb:hover {
    background: #555; /* Cor do polegar ao passar o mouse */
  }
  
  /* Estilização para navegadores Firefox */
  .books-sidebar {
    scrollbar-width: thin; /* Barra de rolagem fina */
    scrollbar-color: #888 transparent; /* Cor do polegar e fundo transparente do trilho */
  }
  
  /* Opcional: ajuste adicional de bordas arredondadas no Firefox */
  .books-sidebar::-webkit-scrollbar-track, .books-sidebar::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }

.books-sidebar .entry-header {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.arrows {
  position: absolute;
  top: 40%;
  left: 125px;
  display: flex;
  flex-direction: column;
}

.arrows button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.arrows button:hover {
  transform: scale(1.1);
}

.arrows .arrow-down {
  transform: rotate(180deg);
  margin-top: 30px;
}


.container {
    padding: 60px;
}

p { text-indent: 40px; }