/* components/styles/Button.css */
.components--button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 0.9rem;
  background-color: rgb(229, 229, 234);
  border: 1px solid black;
  border-radius: 4px;
  padding: 6px 16px;
}

/* components/styles/RadioInput.css */
.components--radio-input--label {
  display: grid;
  align-items: center;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  font-size: 1rem;
}
input[type=radio] {
  accent-color: black;
  transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
}

/* sleeper/src/styles/LoadingBar.css */
.loading-bar-wrapper {
  width: 120px;
  height: 6px;
  border-radius: 6px;
  margin: 8px;
  border: 1px solid black;
  background-color: rgb(242, 242, 247);
  overflow: hidden;
  align-self: center;
}
@keyframes slider {
  0% {
    left: -40px;
  }
  100% {
    left: 120px;
  }
}
.loading-bar-slider {
  width: 40px;
  height: 6px;
  border-radius: 6px;
  background-color: black;
  position: relative;
  left: -40px;
  animation: 1s ease-in-out 0s infinite slider;
}

/* sleeper/src/styles/LeagueSelector.css */
.league-input {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.league-input > label {
  font-size: 1rem;
}
.league-button {
  align-self: center;
  margin: 8px;
  width: 128px;
}

/* sleeper/src/styles/GameStatView.css */
.stat-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  margin: 20px 0;
}
.stat-title {
  font-weight: 600;
  margin: 4px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  column-gap: 20px;
  row-gap: 2px;
}
.stat-grid > p {
  margin: 0;
}
.stat-grid > p:nth-child(even) {
  text-align: right;
}
.stat-grid > p:last-child {
  font-size: 12px;
}
.grid-bold {
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .stat-wrapper {
    margin: 12px 0;
  }
}

/* sleeper/src/styles/StatsListView.css */
.stats-list-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  margin: 20px 0;
}
.stats-list-title {
  font-weight: 600;
  margin: 4px 0;
}
.stats-list-grid {
  display: grid;
  column-gap: 16px;
  row-gap: 2px;
}
.grid-header {
  font-weight: 600;
  margin: 4px 0;
  text-align: right;
}
.grid-header:nth-child(2) {
  text-align: left;
}
.grid-item-index {
  margin: 0;
  text-align: right;
}
.grid-item {
  margin: 0;
  text-align: right;
}
.grid-item-name {
  margin: 0;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .stats-list-wrapper {
    margin: 12px 0;
  }
}

/* sleeper/src/styles/LeagueStatsView.css */
.league-stats-wrapper {
  width: 100%;
  height: 100%;
}
.title {
  font-size: 24px;
  margin: 0;
  margin-bottom: 32px;
}
.stats-views-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 64px;
}
.grid-break {
  flex-basis: 100%;
  height: 0;
}
@media only screen and (max-width: 768px) {
  .title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

/* components/styles/TextInput.css */
.components--text-input--input,
.components--text-input--label {
  font-size: 1rem;
}
.components--text-input--input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid black;
  border-radius: 4px;
  padding: 4px 8px;
}
.components--text-input--label {
  padding: 0 8px;
}

/* sleeper/src/styles/UserLogin.css */
.user-input {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.username-input {
  width: 256px;
}
.user-button {
  align-self: center;
  margin: 4px;
  width: 128px;
}
