.tipster-table th,
.tipster-table td {
  border: 1px solid #e0e6f1;
  padding: 6px 8px;
  vertical-align: top;
}

/* micșorează spațiul pentru cardul meciului */
.tipster-table td:first-child {
  padding-top: 4px;
  padding-bottom: 4px;
}

/* pronosticul – centrat și cu font mai mare */
.tipster-table td:nth-child(2) {
  text-align: center;
  vertical-align: middle;
  font-size: 1.2em;
  font-weight: 600;
}

/* rezultatul – centrat și cu font mare */
.tipster-table td:nth-child(3) {
  text-align: center;
  vertical-align: middle;
  font-size: 1.4em;
}

/* limitează înălțimea cardului meciului */
.tipster-table td:first-child > * {
  max-height: 120px;
  overflow: hidden;
}
/* limită înălțimea cardului pe ecrane mari */
.tipster-table td:first-child > * {
  max-height: 120px;
  overflow: hidden;
}

/* Responsive adjustments for screens below 768px */
@media screen and (max-width: 768px) {
  .tipster-table th,
  .tipster-table td {
    font-size: 14px;
  }
  .tipster-table td:first-child > * {
    max-height: none;
  }
  .tipster-table td:nth-child(2) {
    font-size: 1em;
  }
  .tipster-table td:nth-child(3) {
    font-size: 1.2em;
  }
}