/* Barra superior */
.top-bar {
    background: #154926;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 10px;
    width: 100%;
    position: relative;
    margin-top: -10px;
}
/* Correção de largura e rolagem lateral */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}
/* Estilos gerais */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    padding: 0;
}
/* Barra de Navegação */
.navbar {
  background-color: #ffffff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #154926;
}

.icons {
  display: flex;
  gap: 15px;
}

.icons a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  position: relative;
}
/* Layout do livro */
.container {
    display: flex;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    gap: 20px;
}
.book-left {
    text-align: center;
}

.book-left img {
    width: 100%;
    max-width: 50px;
    border-radius: 5px;
}

.buttons {
    margin-top: 15px;
}

.btn {
    display: block;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
    color: white;
    text-align: center;
    font-weight: bold;
}

.btn:hover {
    opacity: 0.8;
}

.book-right {
    width: 65%;
}
.book-right h1 {
    font-size: 24px;
    color: #154926;
    text-transform: capitalize;
}

.author {
    font-size: 16px;
    color: #555;
    margin: 5px 0 15px;
}

.author span {
    font-weight: bold;
    color: #154926;
}

/* Sinopse */
.synopsis {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.synopsis h3 {
    font-size: 18px;
    color: #154926;
    margin-bottom: 5px;
}

.book-right table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.book-right th, .book-right td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.book-right th {
    background-color: #f1f1f1;
    font-weight: bold;
}
/* Roda-pé */
footer {
    background-color: #154926;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    padding-bottom: 12px;
}

.footer-section h3 {
    font-size: 12px;
    margin-bottom: 12px;
}

.footer-section p {
    font-size: 12px;
}

.copyright {
    font-size: 12px;
    margin-top: 10px;
}

/* Removendo o quadrado verde e ajustando a seta */
a {
    text-decoration: none;
    color: rgb(238, 235, 235);
    font-weight: bold;
}
