.option-container {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  background-color: white;
  animation: SlideIn 100ms linear;
  z-index: 2000;
}

.option-container-small {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.option-content-container {
  position: relative;
  padding: 0 32px;
  max-width: 500px;
  width: 100%;
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
}

.option-content-container-small {
  position: relative;
  border-radius: 8px;
  border: 1px solid #f6f7f8;
  background-color: white;
  color: black;
  box-shadow: 0 4px 23px 0 rgb(0 0 0 / 20%);
  box-sizing: border-box;
  width: 90%;
  max-height: 90%;
  max-width: 500px;
  overflow-y: auto;
  animation: SlideIn 200ms;
  padding: 16px;
  display: block;
}

@keyframes SlideIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.option-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.option-header-title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.button-close {
  position: absolute;
  right: 0;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
}

.option-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.option-content-statistics {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.option-content .p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

.option-instructions {
  padding: 0 16px 0;
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.option-statistics-text-table {
  table-layout: fixed;
  padding: 0 0px 0;
  border: 1px solid black;
  margin-top: 2em;
  margin-bottom: 2em;
  width: 430px;
}

.option-statistics-graph-table {
  table-layout: fixed;
  padding: 0 40px 0;
  border: 1px solid black;
  margin-top: 2em;
  margin-bottom: 2em;
}

.option-examples {
  border-top: 1px solid #d3d6da;
  padding: 0 16px 0;
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.option-example {
  margin-top: 24px;
  margin-bottom: 24px;
}

.option-example-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px;
  box-sizing: border-box;
  width: 100px;
  height: auto;
}

.option-footer {
  border-top: 1px solid #d3d6da;
  padding: 0 16px 0;
  display: block;
  margin-top: 2em;
}
