/* RESET E BODY */ 
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff; /* sfondo bianco */
  color: #1E3A5F; /* testo blu avio scuro */
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background-color: #1E3A5F !important; /* blu avio scuro */
  color: #ffffff !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 50px;
}

header h1 {
  flex: 1;
  text-align: center;
  margin: 0;
}

header img {
  height: 40px;
}

#header-label {
  font-weight: normal;
  font-size: 0.85em;
  margin-right: 5px;
  color: #cfd9e6; /* grigio-azzurro tenue */
}

/* FOOTER */
footer {
  text-align: center;
  padding: 5px 10px;
  background-color: #1E3A5F !important; /* blu avio scuro */
  color: #ffffff !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  line-height: 20px;
  font-size: 0.9em;
}

/* LAYOUT PRINCIPALE */
main {
  display: flex;
  flex: 1;
  margin-top: 50px;
  margin-bottom: 40px;
  height: calc(100vh - 90px);
  overflow: hidden;
}

/* SIDEBAR */
.sidebar {
  width: 250px;
  background: #E6F0FA; /* avion chiaro */
  border-right: 1px solid #b3c6d9;
  display: flex;
  flex-direction: column;
  padding: 10px;
  position: fixed;
  top: 50px;
  bottom: 40px;
  left: 0;
  box-sizing: border-box;
  overflow-y: auto;
}

.sidebar h2 {
  margin: 2px 0 10px 0;
  color: #1E3A5F;
}

/* Lista capitoli */
#chapter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

/* Singolo capitolo */
.chapter-item {
  cursor: pointer;
  transition: 0.2s;
  background: #ffffff;
  border: 1px solid #b3c6d9;
  border-radius: 5px;
  padding: 6px 8px;
  color: #1E3A5F;
}

.chapter-item:hover {
  background: #cfdff0;
}

/* Pulsanti capitoli */
.chapter-nav {
  display: flex;
  justify-content: space-between;
}

.chapter-nav button {
  flex: 1;
  margin: 0 3px;
  padding: 6px;
  border: none;
  border-radius: 4px;
  background: #007bff; /* blu vivo */
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.chapter-nav button:hover {
  background: #0056b3; /* blu più scuro */
}

/* PDF SECTION */
.pdf-section {
  flex: 1;
  margin-left: 250px;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f8fb; /* grigio-azzurro chiarissimo */
}

/* Pulsanti zoom */
.zoom-controls {
  display: flex;
  justify-content: flex-end;
  padding: 5px 0;
  gap: 5px;
}

.zoom-controls button {
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.zoom-controls button:hover {
  background-color: #0056b3;
}

/* CONTAINER PDF */
.chapter-container {
  width: 100%;
  max-width: 1200px;
}

.chapter-container canvas {
  display: block;
  margin: 10px auto;
  max-width: 100%;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.chapter-item.active-chapter {
  background: #007bff;     /* blu vivo */
  color: #fff;             /* testo bianco */
  border-color: #0056b3;
}
.chapter-item.active-chapter .chapter-desc {
  color: #e0e0e0;          /* descrizione più chiara */
}

