.competitor-container {
    background-color: #404040;
    padding: 10px;
    margin: 20px;
    border: 4px solid #202020;
    border-radius: 10px;
    flex-basis: 300px;
  }
  
  .match-container {
    margin: 10px;
    background-color: #303030;
    border: 4px solid #202020;
    border-radius: 10px;
    padding: 10px;
  }
  
  .match {
    width: 100%;
    border-collapse: collapse;
  }
  
  .match .highlighted {
    font-weight: bold;
    background-color: #404040;
  }
  
  .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: 100px;
  }
  
  .match tr td {
    padding: 5px;
    border-collapse: collapse;
  }
  
  .style-caption {
    font-size: x-small;
  }
  
  h2 {
    margin: 0;
  }