body {
  font-family: Roboto;
  margin: 0;
  background-image: url('bg.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.mytabs {
  display: flex;
  flex-direction: column;
}

.mytabs input[type="radio"] {
  display: none;
}

.mytabs label {
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  background: #e2e2e2;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  margin-right: -1px;
}

.mytabs input[type='radio']:checked + label {
  background: #fff;
  border-bottom: 1px solid white;
}

.mytabs .tab {
  display: none;
  order: 1;
  margin: 8px;
}

.mytabs input[type='radio']:checked + label + .tab {
  display: block;
}

.button {
  margin: 5px;
  text-transform: uppercase;
  padding: 12px;
  font-family: Roboto;
  display: block;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  cursor: pointer;
}

.header {
  background-color: blanchedalmond;
  margin: 0;
  padding: 10px;
  font-size: 22px;
  font-weight: bold;
}

.share-button {
  display: none;
  margin-left: 10px;
  cursor: pointer;
  font-size: 24px; /* Aggiornato per adattarsi all'icona */
  line-height: 1; /* Allinea verticalmente l'icona */
}
