body {
  background-color: #007FFF; /* blu pagina leggermente pił chiaro */
  color: White;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.icons img {
  width: 22px;
  margin: 0 3px;
}

h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 15px;
  color: white;
}

h2 {
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: black;  
}

h3 {
  font-size: 14px;
  font-weight: bold;
  color: Black;
  background-color: White; 
}

h4 {
  font-size: 14px;
  font-weight: bold;
  color: White;
  background-color: Black; 
}

/*HR serve per definire la linea orizontale del tag hr in html*/
hr {
  border: none;
  height: 3px;
  background-color: red;
  width: 90%;
  margin: 10px auto;
}

hr.grigio {
  border: 1px solid white;
  height: 0;
  width: 50%;
}


.buttons {
  margin: 15px;
}

button {
  background-color: white;
  color: white;
  border: 2px solid red;
  padding: 8px 16px;
  margin: 4px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
}

button:hover {
  background-color: #FFB6B3 !important;
  
}

.button-link {
  color: white;             /* testo bianco */
  text-decoration: none;    /* niente sottolineatura */
}

.button-link:hover {
  color: Red;            /* testo giallo al passaggio del mouse */
}

.table-section {
  width: 95%;
  margin: 0 auto 40px auto;
  background-color: black; /* verde scuro */
  border: 2px solid white;
  border-radius: 10px;
  padding: 8px;
}


}

.table-section h2 {
  color: white;
  background-color: black;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.table-section h2 img {
  width: 20px;
}

.table-divider {
  height: 3px;
  background-color: red;
  width: 100%;
  margin: 5px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5px;
  table-layout: fixed;
}

/* Tabella secondaria Tipi */
.secondary-table {
  background-color: White;
  border: 2px solid red;
  border-radius: 10px;
  padding: 8px;
}

.secondary-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Layout delle due tabelle secondarie affiancate */
.secondary-tables-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 95%;
  margin: 0 auto 5px auto;
}

/* Entrambe le tabelle secondarie */
#sezione-tipi, #sezione-condizioni {
  width: 45%;
}

/* Link che si comportano come bottoni */
.button-link {
  display: inline-block;
  background-color: white;
  border: 2px solid red;
  border-radius: 8px;
  padding: 8px 16px;
  margin: 4px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.button-link:hover {
  background-color: #FFB6B3 !important;
}

.buttons button a {
  font-size: 24px !important;
  color: white !important;
  text-decoration: none !important;
  background-color: #FFB6B3  !important;
  
}
h5 {
  font-size: 8px !important;
  font-weight: thin !important;
  color: White !important;
  background-color: Black !important;
  line-height: 1.5 !important;

}