.tmt-matches {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #1e1e1e;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tmt-card {
  background: #2a2a2a;
  border-left: 6px solid #ff6600;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: 0.3s ease-in-out;
}

.tmt-card:hover {
  transform: translateY(-4px);
}

.tmt-league {
  font-size: 18px;
  font-weight: bold;
  color: #ff9933;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

.tmt-time {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  text-align: center;
  margin-bottom: 10px;
}

.tmt-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tmt-team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.tmt-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 8px;
}

.tmt-name {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.tmt-vs {
  font-style: italic;
  font-size: 18px;
  color: #ff6600;
  font-weight: 500;
  min-width: 30px;
  text-align: center;
}

.tmt-print-button {
  margin-top: 20px;
  text-align: center;
}

.tmt-print-button a {
  background-color: #ff6b00;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.tmt-print-button a:hover {
  background-color: #e85d00;
}