body {
    font-family: 'Arial', sans-serif;
    background-color: #f4e9d8; /* A warm, earthy background color */
    color: #333333; /* Dark text for readability */
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1 {
    color: #d85a33; /* A bold color for the main heading */
    text-align: center;
    border-bottom: 2px solid #d85a33;
    padding-bottom: 10px;
}

h2 {
    color: #4a7387; /* A distinct color for subheadings */
    margin-top: 40px;
}

p {
    line-height: 1.6; /* Improved readability */
}

img {
    width: 60%; /* Responsive images */
    height: auto;
    border: 3px solid #d85a33; /* Border to highlight images */
    margin-top: 10px;
    margin-bottom: 20px;
}

.playoff-table *{
  box-sizing: border-box;
}
.playoff-table {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.42857143;
  font-weight: 400;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #f5f5f5;
}
.playoff-table .playoff-table-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  padding: 20px;
}
.playoff-table .playoff-table-tour {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  position: relative;
}
.playoff-table .playoff-table-pair {
  position: relative;
}
.playoff-table .playoff-table-pair:before {
  content: '';
  position: absolute;
  top: 27px;
  right: -12px;
  width: 12px;
  height: 1px;
  background-color: red;
}
.playoff-table .playoff-table-pair:after {
  content: '';
  position: absolute;
  width: 3px;
  height: 1000px;
  background-color: #f5f5f5;
  right: -12px;
  z-index: 1;
}
.playoff-table .playoff-table-pair:nth-child(even):after {
  top: 28px;
}
.playoff-table .playoff-table-pair:nth-child(odd):after {
  bottom: 28px;
}
.playoff-table .playoff-table-pair-style {
  border: 1px solid #cccccc;
  background-color: white;
  width: 160px;
  margin-bottom: 20px;
}
.playoff-table .playoff-table-group {
  padding-right: 11px;
  padding-left: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.playoff-table .playoff-table-group .playoff-table-pair-style:last-child {
  margin-bottom: 0px;
}
.playoff-table .playoff-table-group:after {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 29px;
  right: 0px;
  width: 1px;
  background-color: red;
}
.playoff-table .playoff-table-group:last-child {
  margin-bottom: 0;
}
.playoff-table .playoff-table-left-player,
.playoff-table .playoff-table-right-player {
  min-height: 26px;
  padding: 3px 5px;
}
.playoff-table .playoff-table-left-player {
  border-bottom: 1px solid #cccccc;
}
.playoff-table .playoff-table-left-player:before {
  content: '';
  position: absolute;
  bottom: 27px;
  left: -12px;
  width: 12px;
  height: 1px;
  background-color: red;
}
.playoff-table .playoff-table-right-player {
  margin-top: -1px;
  border-top: 1px solid #cccccc;
}
.playoff-table .playoff-table-third-place {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 100px;
}
.playoff-table .playoff-table-third-place .playoff-table-left-player:before {
  display: none;
}
.playoff-table .playoff-table-tour:first-child .playoff-table-group {
  padding-left: 0;
}
.playoff-table .playoff-table-tour:first-child .playoff-table-left-player:before {
  display: none;
}
.playoff-table .playoff-table-tour:last-child .playoff-table-group:after {
  display: none;
}
.playoff-table .playoff-table-tour:last-child .playoff-table-pair:after,
.playoff-table .playoff-table-tour:last-child .playoff-table-pair:before {
  display: none;
}

table {
  width: 30%;
  text-align: left;
  margin-bottom: 20px;
  border-collapse: collapse;
}
td {
 padding: 5px;
}
tr.matchup-row {
  border-bottom: 1px solid black; /* Add a black bottom border to matchup rows */
}

td:nth-child(2), 
td:nth-child(3) {
  text-align: right;
  width: 50px; /* Adjust as needed to ensure alignment */
}


.round-title {
  font-weight: bold; /* Make the text bold */
  font-size: 90%; /* Adjust the font size to make it slightly smaller */
}
