/*
 Theme Name: GeneratePress Child
 Theme URI: https://generatepress.com
 Description: Child theme di GeneratePress
 Author: Tuo Nome
 Template: generatepress
 Version: 1.0
*/
.sidebar-custom {
  width: 120px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 10px 20px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.sidebar-custom img {
  max-width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.sidebar-custom .sidebar-text {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Bottoni */
.btn {
  display: block;
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  color: white;
}

.btn-rosso { background-color: #c62828; }
.btn-blu   { background-color: #1565c0; }

/* Sposta il contenuto principale a destra */
#page {
  margin-left: 120px;
}

/* Nasconde l'header di GeneratePress */
.site-header {
  display: none;
}

/* PDF viewer / template visualizza-pdf */
.pdfjs-area {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.pdfjs-frame {
  width: 100%;
  height: 100vh;
  border: none;
}

.page-template-visualizza-pdf .content-area,
.page-template-visualizza-pdf #primary {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.page-template-visualizza-pdf .site-content {
  display: flex;
}

.page-template-visualizza-pdf #primary {
  flex-grow: 1;
}

/* Griglie albo */
.albo-fisico-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;          /* tieni questo se vuoi il gap piccolo */
  max-width: 1200px;
  margin: 0 auto;
}

.albo-cartella {
  flex: 1 1 350px;
  max-width: 100%;
  border: 1px solid #ddd;
  padding: 15px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
}

.albo-cartella h3 {
  margin-bottom: 15px;
  font-size: 1em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
}

.pdf-titolo {
  margin-top: 6px;
  font-weight: normal;
  font-size: 0.8em;
}

.pdf-descrizione,
.pdf-pagine {
  font-size: 12px;
  color: #666;
}

.pdf-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.pdf-item {
  flex: 0 0 240px;
  text-align: center;
}

.pdf-item img {
  width: 240px !important;
  height: auto !important;
  border: 1px solid #ccc;
}

/* Mobile */
@media (max-width: 600px) {
  .sidebar-custom {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 10px;
    margin-bottom: 20px;
  }

  .sidebar-custom img {
    max-width: 60px;
    margin-bottom: 10px;
  }

  .sidebar-custom .sidebar-text {
    font-size: 13px;
    margin: 10px 0;
    text-align: center;
    width: 100%;
  }

  .sidebar-hide-mobile {
    display: none;
  }

  .btn {
    font-size: 16px;
    padding: 10px 14px;
    width: 100%;
    margin: 6px 0;
  }

  #page {
    margin-left: 0;
  }

  .pdfjs-frame {
    height: 80vh;
  }

  .page-template-visualizza-pdf .site-content {
    display: block;
  }
}
