/* Keep the team submission result column compact while preserving XCPC-style text verdicts. */
.yc-status-table {
  table-layout: fixed;
}

.yc-status-table th:nth-child(1),
.yc-status-table td:nth-child(1) {
  width: 15%;
}

.yc-status-table th:nth-child(2),
.yc-status-table td:nth-child(2) {
  width: 22%;
}

.yc-status-table th:nth-child(3),
.yc-status-table td:nth-child(3) {
  width: 14%;
}

.yc-status-table th:nth-child(4),
.yc-status-table td:nth-child(4) {
  width: 220px;
  max-width: 24%;
}

.yc-status-table .yc-result-cell.yc-status {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
}

.yc-status-table .yc-result-cell.yc-status a {
  display: flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 720px) {
  .yc-status-table {
    table-layout: auto;
  }

  .yc-status-table th:nth-child(1),
  .yc-status-table td:nth-child(1),
  .yc-status-table th:nth-child(2),
  .yc-status-table td:nth-child(2),
  .yc-status-table th:nth-child(3),
  .yc-status-table td:nth-child(3),
  .yc-status-table th:nth-child(4),
  .yc-status-table td:nth-child(4) {
    width: auto;
    max-width: none;
  }

  .yc-status-table .yc-result-cell.yc-status {
    font-size: 16px;
  }
}
