  .score-sheet {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-bottom: 30px;
  }

  .score-sheet th,
  .score-sheet td {
    border: 1px solid #000;
    padding: 4px;
    text-align: center;
    font-size: 12px;
    line-height: 1;
  }

  .highlight {
    background: yellow;
    font-weight: bold;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .header .title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 100%;
  }

  .info {
    margin: 5px 0;
  }

  .team-table-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .team-table-header .title {
    text-align: center;
    width: 100%;
  }

  .team-wrapper {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .team-table-print-sec {
    max-width: 1260px;
    margin: 40px auto;
  }

  .team-table-info {
    display: flex;
    flex-wrap: wrap;
  }

  .team-table-info .info-inner-item {
    width: 50%;
  }

  .team-table-info .info-inner-item span.fill-blank {
    width: 50%;
    display: inline-block;
    border-bottom: 1px solid #000;
    margin-left: 10px;
  }

  .team-wrapper table.score-sheet {
    margin-top: 20px;
  }

  .team-table-info .info-inner-item strong.text-center {
    text-align: center;
    display: block;
  }

  .score-sheet th:first-child,
  .score-sheet td:first-child,
  .score-sheet th:nth-child(3),
  .score-sheet td:nth-child(3) {
    width: 20%;
  }

  .score-sheet th:nth-child(5),
  .score-sheet td:nth-child(5) {
    width: 10%;
  }

  .score-sheet th:nth-child(2),
  .score-sheet td:nth-child(2),
  .score-sheet td:nth-child(4),
  .score-sheet th:nth-child(4) {
    width: 5%;
  }

  .score-sheet td.gray-bg {
    background: #d3d3d3;
  }

  @media print {
    .print-btn {
      display: none;
    }

    header {
      display: none !important;
    }

    footer {
      display: none;
    }

    body {
      margin: 0;
    }

    @page {
      size: 8.5in 11in;
      margin: 0.5in;
    }
  }