.grid-view td {
    /* white-space: nowrap; */
    white-space: normal;
    word-wrap: anywhere;
  }

/* Base */
.body-book {
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    color: #333;  
    background-color: #f9f9f9; 
}

/* Titolo del libro */
.title-book {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding:50px;
    margin-top:-50px;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Titoli dei capitoli */
.chapter-title-book {
    font-size: 26px;
    font-weight: bold;
    margin-top: 1.5em;
    margin-bottom: 1em;
    border-bottom: 1px solid #000;
}

/* Titoli delle unità */
.unit-title-book {
    font-size: 20px;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 0.5em;
    color: #444;
}

/* Testo generico */
.text-book {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 1em;
}

/* Immagine generica */
.img-book {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border: 2px solid #000;
    padding: 10px;
    background-color: #ccc;
}


.container-book {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.dedication-book {
    text-align: right;
    font-style: italic;
    font-size: 1.0em;
    line-height: 1.5em;
    padding-right: 20px; /* Aggiunge un po' di spazio a sinistra della dedica */
}


/* Layout 1: Immagine a sinistra, testo a destra */
.layout1 .img-book {
    float: left;
    width: 40%;
    margin-right: 5%;
}

/* Layout 2: Immagine a destra, testo a sinistra */
.layout2 .img-book {
    float: right;
    width: 40%;
    margin-left: 5%;
}

/* Layout 3: Immagine centrata sopra il testo */
.layout3 .img-book {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Layout 4: Immagine come sfondo */
.layout4 {
    background-image: url('path_to_image.jpg');
    background-size: cover;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 50px;
}

.layout4 .img-book {
    display: none;  /* Nasconde l'immagine perché viene utilizzata come sfondo */
}

/* Classe per lo sfondo */
.cover-background {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #ff7e5f, #feb47b);
    background-attachment: fixed;
}

/* Classe per il testo */
.cover-text {
    font-family: 'Times New Roman', serif;
    font-size: 48px;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    max-width: 800px; /* Limita la larghezza del testo per una migliore leggibilità */
    margin: 0 auto; /* Centra il testo orizzontalmente */
}

.media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.media-item {
    text-align: center;
    margin: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}