#worlds-button-container {
  padding: 0.125rem;
  margin: 0 auto;
  width: 20em;
}
.worlds-button {
  border-radius: 0.3rem;
  border: 2px solid rgb(86, 104, 127);
  background-color: rgba(86, 104, 127, 0.6);
  padding: 0.125rem 2rem;
  margin: 0.25rem;
  display: inline-block;
  font-size: 1.5rem;
}
.worlds-button:hover {
  border: 2px solid rgb(129, 156, 191);
  background-color: rgba(129, 156, 191, 0.6);
}
.worlds-button.active {
  border: 2px solid rgb(255, 80, 80);
  background-color: rgba(255, 80, 80, 0.6);
}
.worlds-button:hover.active {
  border: 2px solid rgb(255, 120, 120);
  background-color: rgba(255, 120, 120, 0.6);
}

.graphs-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
}
.graph {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}
.graph > div:not(.player-bets) {
  width: 200rem;
  height: 30rem;
}

.player-bets {
  min-height: 40rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.player-bets > div {
  width: 24rem;
  height: 35rem;
}
.player-bets > div > div {
  height: 30rem;
}
.player-bets > h3 {
  width: 100%;
}


.extended-info {
  min-height: 25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.extended-info > div {
  width: 18rem;
}
.objective-info {
  min-height: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center
}
.objective-info > div {
  width: 20rem;
}

#main-graphs {
  text-align: center; 
  color: white; 
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

hr {
  border: 0px;
  height: 0.125rem;
  background-color: rgba(47, 60, 77, 0.5);
  box-shadow: 0px 0px 1rem rgba(47, 60, 77, 0.5);
}

#data-button-container {
  display: inline-block;
  padding: 0.125rem;
  background-color: rgba(32, 32, 32, 0.2);
  width: 100%;
}
.data-button {
  border-radius: 0.25rem;
  border: 2px solid rgb(86, 104, 127);
  background-color: rgba(86, 104, 127, 0.6);
  padding: 0.125rem 0.75rem;
  margin: 0.125rem;
  display: inline-block;
  font-size: 1.25rem;
}
.data-button:hover {
  border: 2px solid rgb(129, 156, 191);
  background-color: rgba(129, 156, 191, 0.6);
}
.data-button.active {
  border: 2px solid rgb(255, 80, 80);
  background-color: rgba(255, 80, 80, 0.6);
}
.data-button.active:hover {
  border: 2px solid rgb(255, 120, 120);
  background-color: rgba(255, 120, 120, 0.6);
}

.data-chart-container {
  display: none;
  height: 38rem;
}

.expandable-container-button {
  font-size: 1.25em;
  cursor: pointer;
  border: 2px solid rgba(47, 60, 77, 0.5);
  background-color: rgba(47, 60, 77, 0.25);
  padding: 0.25em;
  border-radius: 0.25em;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.expandable-container {
  border: 1px solid rgba(47, 60, 77, 0.5);
  background-color: rgba(47, 60, 77, 0.25);
  border-radius: 0.25em;
  overflow: hidden;
  padding: 0;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}
.expandable-container.expanded {
  max-height: 6em;
  padding: 1em;
  opacity: 1;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 12.5rem;
  height: 12.5rem;
}
.lds-ripple div {
  position: absolute;
  border: 1.25rem solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 6.25rem;
    left: 6.25rem;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 6.25rem;
    left: 6.25rem;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 6.25rem;
    left: 6.25rem;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 12.5rem;
    height: 12.5rem;
    opacity: 0;
  }
}