.phases-container {
  display: flex;
  flex-wrap: wrap;
}

.phase {
  text-align: center;
  background-color: #404040;
  padding: 10px;
  margin: 20px;
  margin-bottom: 0px;
  border: 4px solid #202020;
  border-radius: 10px;
  flex-basis: 350px;
}

.match-container {
  margin: 10px;
  background-color: #303030;
  border: 4px solid #202020;
  border-radius: 10px;
  padding: 5px;
  display: flex;
}

.match-index {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  margin-right: 4px;
}

.match {
  width: 100%;
  border-collapse: collapse;
}

.match tr:first-of-type td {
  border-bottom: 1px solid #808080;
}

.match tr td:first-of-type {
  text-align: left;
}

.match tr td {
  text-align: right;
}

.match tr td:last-of-type {
  width: 60px;
}

.match tr td {
  padding: 5px;
  border-collapse: collapse;
}

.style-caption {
  font-size: x-small;
}

@media screen and (max-width: 768px) {

  html,
  td {
    font-size: larger;
  }

  .phases-container {
    flex-direction: column;
  }

}