.location-list {
  display: flex;
  gap: 20px;
  font-weight: bold;
  color: #1b57a5;
  font-family: Arial, sans-serif;
  cursor: pointer;
}

.location-item:hover {
  text-decoration: underline;
}


@media only screen and (max-width: 767px) {
  .location-list{
    font-size: 13px;
    gap: 6px;
  }
}
.score-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-button {
  background: #1b57a5;
  color: white;
  font-size: 20px;
  border: none;
  padding: 15px 3px;
  cursor: pointer;
  border-radius: 4px;
}

.score-tabs-container {
  display: flex;
  gap: 5px;
  overflow: hidden;
  width: 100%;
}

.score-tab {
  padding: 5px 0px;
  width: 14.28%;
  border-radius: 5px !important;
  background-color: #fff;
  margin: 0 5px;
  font-size: 11px;
  position: relative;
  flex-basis: calc(14% - 8px);
  margin: 4px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.6) !important;
  cursor: pointer;
}
.score-tab:hover {
  background: #c6c6c6 !important;
}
.score-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-top: 5px solid #1b57a5;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  bottom: -5px;
}
.score-tab p {
  margin-bottom: 0px;
}

.score-tab img.tab-icon {
  max-width: 45px;
  margin: 0 auto;
  display: table;
  height: 24px;
  padding-bottom: 2px;
  transition: all 0.3s;
  box-sizing: border-box;
}
.score-tab:hover .tab-icon {
  transform: scale(1.3) rotate(5deg);
}

.score-tab.active {
  background: #1b57a5 !important;
  color: white !important;
}

.score-tab.active img.tab-icon {
  filter: brightness(100%);
}

.ml-10 {
  margin-left: 10px;
}

@media (min-width: 768px) {
  .arrow-button {
    display: none;
  }

  /* .score-tabs-container {
    flex-wrap: wrap;
    justify-content: space-between;
  } */

  .score-tab {
    flex-basis: calc(14.28% - 10px);
  }
}

@media (max-width: 768px) {
  .score-tab{
    flex-basis: calc(24% - 8px);
  }
  .ml-10 {
  margin-left: 0px;
}
}

/* Center the entire toggle component */
.toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  position: relative;
}

/* Container for the buttons */
.toggle-container {
  display: inline-flex;
  border: 2px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

/* Button styles */
.toggle-button {
  padding: 6px 16px;
  border: none;
  outline: none;
  font-weight: bold;
  cursor: pointer;
  background-color: transparent;
  color: black;
  font-size: 14px;
}

.toggle-button.active {
  background-color: #1b57a5;
  color: white;
  border-radius: 50px;
}

