body {
  background-color: var(--mist);
}

#discovery_container {
  max-width: 1200px;
  min-height: 80vh;
  margin: 0 auto;
  position: relative;
}

.question-block {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  position: relative;
  transition: all 0.5s ease;
}

.question-block.active {
  font-size: 1.3em;
  max-width: 600px;
  text-align: center;
}

.question-block.completed {
  font-size: 0.9em;
  max-width: 400px;
  opacity: 0.95;
}

.question-block.alternative {
  font-size: 0.7em;
  max-width: 250px;
  opacity: 0.3;
  position: absolute;
  pointer-events: none;
}

.question-text {
  margin-bottom: 20px;
  font-weight: 500;
  color: #333;
}

.answer-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 12px 30px;
  border: 2px solid #333;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.2s;
  font-weight: 500;
}

.btn:hover {
  background: #333;
  color: white;
}

.btn.selected {
  background: #333;
  color: white;
}

.connector {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #333;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.connector.visible {
  opacity: 1;
}

.connector::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #333;
}

.conclusion {
  font-size: 1.2em;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.level-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  margin: 20px;
}

.main-path {
  flex: 0 1 auto;
  z-index: 10;
}

.alternatives {
  position: absolute;
  top: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  pointer-events: none;
}

.alt-left, .alt-right {
  top: 25px;
}

.alt-left {
  left: 5%;
}

.alt-right {
  right: 5%;
}

@media (max-width: 1080px) {
  .question-block.active {
    font-size: 1.2em;
  }
  .alternatives {
    display: none;
  }
}
.restart {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 1rem;
  border: 1px solid #333;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.restart {
  position: fixed;
  z-index: 100;
  bottom: 1rem;
  right: 1rem;
  font-size: 1rem;
  border: 1px solid #333;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.restart:hover {
  background: #333;
  color: white;
}

/*# sourceMappingURL=flowchart.css.map */
