.statistics-container {
  overflow: hidden;
}

.playerdata-table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  border: none;
}

.playerdata-table th,
.playerdata-table td {
  text-align: center;
  border: 1px solid #ddd;
}

.playerdata-table th:first-child,
.playerdata-table td:first-child {
  width: 50px;
  min-width: 50px;
}

.playerdata-table th:nth-child(2),
.playerdata-table td:nth-child(2) {
  width: 100%;
  min-width: 200px;
}

.playerdata-table th:nth-child(3),
.playerdata-table td:nth-child(3) {
  width: 120px;
  min-width: 120px;
}

.playerdata-table th:not(:first-child):not(:nth-child(2)):not(:nth-child(3)),
.playerdata-table td:not(:first-child):not(:nth-child(2)):not(:nth-child(3)) {
  width: calc((100% - 120px - 200px) / 13);
  min-width: 82px;
}

.playerdata-no-data-message {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #6c757d;
  font-size: 16px;
  margin: 20px 0;
}

.playerdata-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}

@media screen and (max-width: 768px) {
  .data.techtype_data {
    width: 100%;
    overflow: hidden;
  }

  .playerdata-table thead,
  .playerdata-table tbody {
    display: table;
    width: 100%;
  }

  .playerdata-table thead th,
  .playerdata-table tbody td {
    min-width: 88px;
  }
}