/* ===== Stile generale ===== */
body {
  background-color: #c9d8eb;   /* Azzurrino chiaro */
  color: #000;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* ===== Logo ===== */
h1.logo {
  font-family: "Great Vibes", cursive;
  font-size: 72px;
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* ombra leggera */
}

h1.logo .ham {
  color: #1e73be; /* Blu elegante medio */
}

h1.logo .italia {
  color: #0a3c7d; /* Blu più intenso */
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 0.6em;
  margin-left: 10px;
  position: relative;
  top: -10px;
}

/* ===== Sottotitolo ===== */
h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}
/* ===== Tabella ===== */
table {
  width: 80%;
  margin: 0 auto 40px auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px 15px;
  text-align: center;
}

th {
  background-color: #e3eaf5;
  color: #1e73be;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #eaf2ff;
}
