.league_table_wrapper {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.league_table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.league_table_wrap::-webkit-scrollbar {
  height: 6px;
}

.league_table_wrap::-webkit-scrollbar-thumb {
  background-color: #0c77a4;
  border-radius: 4px;
}

.league_table_wrap::-webkit-scrollbar-track {
  background-color: #ffffff;
}

.league_table {
  width: 630px;
  table-layout: fixed;
}

.league_table_head_line {
  background-color: #0c77a4;
}

.league_table_head_point {
  padding: 8px;
}

.league_table_head_point_text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.league_table_head_point_text_text_align_left {
  text-align: left;
}

.league_table_body_line {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.league_table_body_line:last-child {
  border-bottom: none;
}

.league_table_body_point {
  padding: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.league_table_body_point:last-child {
  border-right: none;
}

.league_table_body_point_text {
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
  text-align: center;
}

.team_name_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #333333;
  transition: all 0.9s ease;
}

.team_name_link:hover {
  color: #333333a6;
}

.team_name_link_active {
  color: #cc2e2e;
}

.team_name_link_active:hover {
  color: #cc2e2e;
}

.team_name_link_img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.team_name_link_title {
  display: none;
}

.league_table_head_line td:first-child,
.league_table_body_line td:first-child {
  position: sticky;
  left: 0;
  z-index: 5;
  width: 50px;
}

.league_table_head_line td:nth-child(2),
.league_table_body_line td:nth-child(2) {
  position: sticky;
  left: 50px;
  z-index: 3;
  width: 50px;
}

.league_table_head_line td:first-child,
.league_table_head_line td:nth-child(2) {
  background-color: #0c77a4;
}

.league_table_body_line td:first-child,
.league_table_body_line td:nth-child(2) {
  background-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .league_table {
    width: 930px;
  }

  .team_name_link {
    justify-content: flex-start;
  }

  .team_name_link_title {
    font-size: 16px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .league_table_head_line td:nth-child(2),
  .league_table_body_line td:nth-child(2) {
    width: 150px;
  }
}

@media screen and (min-width: 1024px) {
  .league_table_head_point_text {
    font-size: 18px;
  }

  .league_table_body_point_text {
    font-size: 18px;
  }

  .team_name_link_img {
    width: 30px;
    height: 30px;
  }

  .team_name_link_title {
    font-size: 18px;
  }

  .league_table_head_line td:nth-child(2),
  .league_table_body_line td:nth-child(2) {
    width: 250px;
  }
}

@media screen and (min-width: 1200px) {
  .league_table {
    width: 100%;
  }

  .league_table_head_point {
    padding: 16px;
  }

  .league_table_body_point {
    padding: 16px;
  }

  .team_name_link {
    gap: 24px;
  }
}
