.calendario-campionato {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  margin-bottom: 15px;
}

.calendario-campionato table {
  width: auto;
  max-width: 720px;
  margin: 10px auto;
  border-collapse: collapse;
}

.calendario-campionato th,
.calendario-campionato td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid #eee;
}

.calendario-campionato th {
  background: #0044cc;
  color: white;
  font-weight: 600;
}

.calendario-campionato .partita {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}

.calendario-campionato .team {
  font-weight: 500;
  color: #222;
}

.calendario-campionato .vs {
  font-weight: bold;
  color: #333;
  padding: 0 4px;
}

.calendario-campionato .risultato {
  text-align: center;
  width: 60px;
  font-weight: bold;
}

.giornata-header {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin: 10px 0 0 5px;
  color: #222;
}

.calendario-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.calendario-inner {
  display: flex;           /* bottoni e calendario in riga */
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.arrow {
  background: #0044cc;
  color: white;
  border: none;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow:hover {
  background: #0033aa;
}
