.statistics-container {
  overflow: hidden;
}

.main_title {
  float: unset;
}

.data.techtype_data {
  margin-top: 10px;
}

.lineup-table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  border: none;
  font-size: 11px;
}

.lineup-table th,
.lineup-table td {
  text-align: center;
  /* padding: 4px 0; */
  border: 1px solid #ddd;
}

.lineup-table th:first-child,
.lineup-table td:first-child {
  width: 40px;
  min-width: 40px;
}

.lineup-table th:not(:first-child),
.lineup-table td:not(:first-child) {
  width: calc((100% - 40px) / 11);
  min-width: 82px;
}

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

.table_title.lineup-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.lineup-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;
}

.tech_coach.lineup-table th:first-child,
.tech_coach.lineup-table td:first-child {
  width: 100%;
}

.tech_coach.lineup-table th:not(:first-child),
.tech_coach.lineup-table td:not(:first-child) {
  width: 150px;
  min-width: 150px;
}


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

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

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