.top-button-holder {
  position: absolute;
  width: fit-content;
  height: fit-content;
  right: 10px;
  top: 0px;
}

.top-button {
  padding: 20px;
  margin: 20px;
  margin-left: 10px;
  background-color: transparent;
  border-radius: 15px;
  border: none;
  color: rgb(200, 200, 200);
  font-family: sans-serif;
  font-size: 17px;
}

.top-button:hover {
  background-color: rgb(75, 75, 75);
  cursor: pointer;
}

.title {
  padding: 30px;
  text-align: center;
  font-size: 75px;
  font-weight: bold;
}

.description {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  font-size: 20px;
  color: rgb(100, 100, 100);
}

.title-line {
  width: 500px;
  height: 1px;
  margin-left: 50%;
  transform: translateX(-50%);
  background-color: rgb(100, 100, 100);
}

.prompt-text-container {
  width: 700px;
  height: 200px;
  margin-left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgb(50, 50, 50);
  background-color: rgb(30, 30, 30);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 5px 10px rgb(0, 0, 0, 0.5);
}

.prompt-gradient {
  position: absolute;
  width: 700px;
  height: 200px;
  background: linear-gradient(rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 90%);
  border-radius: 10px;
}

.prompt-text {
  width: 680px;
  padding: 10px;
  text-align: center;
}

.prompt-button {
  margin-left: 350px;
  margin-top: 100px;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 50px;
  position: absolute;
  font-size: 20px;
  border-color: rgb(150, 150, 150);
}

.prompt-button:hover {
  background-color: rgb(50, 50, 50);
  cursor: pointer;
}

.parameters-holder {
  margin-top: 30px;
  margin-left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  display: flex;
  gap: 20px;
}

.data-holder {
  width: fit-content;
  display: flex;
}

.data-text-holder {
  height: 20px;
  width: fit-content;
  justify-content: center;
  border: 1px solid rgb(50, 50, 50);
  background-color: rgb(30, 30, 30);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
}

.data-text {
  margin-top: 10px;
  transform: translateY(-50%);
  padding: 5px;
  font-size: 13px;
}

.data-box {
  width: 20px;
  height: 20px;
  border: 1px solid rgb(50, 50, 50);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
  text-align: center;
  margin-left: -1px;
}

.data-check {
  margin-top: 10px;
  transform: translateY(-50%);
}

.data-tokens {
  margin-top: 20px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.data-value-box {
  height: 20px;
  width: fit-content;
  justify-content: center;
  border: 1px solid rgb(50, 50, 50);
  background-color: rgb(30, 30, 30);;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.data-value {
  margin-top: 10px;
  transform: translateY(-50%);
  padding: 5px;
  font-size: 13px;
  color: rgb(200, 0, 0);
  font-weight: bold;
}

.data-text-input {
  margin-left: 1px;
  margin-right: 3px;
  margin-top: 10px;
  transform: translateY(-50%);
  background-color: rgb(30, 30, 30);
  border: none;
  color: rgb(0, 175, 0);
  text-align: right;
  font-weight: bold;
}

.blue-button {
  background-color: rgb(0, 150, 200);
  padding: 15px;
  color: black;
  font-size: 17px;
  border: none;
}

.blue-button:hover {
  background-color: rgb(100, 160, 180);
  cursor: pointer;
}

.blue-button.clicked {
  background-color: rgb(100, 100, 100);
}

.indicator-container {
  margin-top: 30px;
  margin-left: 50%;
  transform: translate(-50%);
  width: fit-content;
  height: fit-content;
}

.indicator {
  position: fixed;
  right: -15px;
  top: -15px;
  width: 30px;
  height: 30px;
  background-color: rgb(30, 30, 30);
  border: 1px solid rgb(50, 50, 50);
  border-radius: 50%;
}

.answer-mark {
  text-align: center;
  margin-top: 50%;
  transform: translateY(-50%);
}

.question-container {
  width: 600px;
  height: fit-content;
  overflow: hidden;
}

.question-text {
  padding: 30px;
}

.question-line {
  width: 550px;
  height: 2px;
  margin-left: 300px;
  transform: translate(-50%);
  background-color: rgb(50, 50, 50);
}

.answer-button {
  display: flex;
  align-items: center;
  height: fit-content;
  padding: 30px;
  background-color: rgb(20, 20, 20);
  border: none;
}

.answer-button:hover {
  background-color: rgb(35, 35, 35);
  cursor: pointer;
}

.answer-radio {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-color: rgb(30, 30, 30);
  border: 1px solid rgb(50, 50, 50);
  border-radius: 50px;
}

.answer-dot {
  flex-shrink: 0;
  margin-left: 50%;
  margin-top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: rgb(200, 200, 200);
  border-radius: 50%;
}

.answer-text {
  padding-left: 30px;
}

.answer-reasoning {
  text-align: center;
  padding: 10px;
  color: rgb(150, 150, 150);
  font-size: 13px;
}

.answer-reasoning:hover {
  text-decoration: underline;
  color: rgb(200, 200, 200);
  cursor: pointer;
}

.answer-reasoning-container {
  margin-left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: fit-content;
  min-height: 200px;
  max-height: 400px;
  overflow-y: scroll;
  padding: 10px;
  text-align: left;
  scrollbar-width: none;
  background-color: rgb(15, 15, 15);
}

.quiz-score {
  text-align: center;
  padding-top: 20px;
  font-size: 15px;
  color: rgb(100, 100, 100);
}

.button-holder {
  width: fit-content;
  margin-top: 30px;
  margin-left: 50%;
  transform: translate(-50%);
  display: flex;
  gap: 20px;
}

.retake-button {
  background-color: rgb(20, 20, 20);
  padding: 15px;
  color: rgb(255, 0, 0);
  font-size: 20px;
  border: 1px solid rgb(50, 50, 50);
}

.retake-button:hover {
  background-color: rgb(40, 40, 40);
  cursor: pointer;
}

.return-message {
  color: red;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 250px;
}

.material-box {
  width: 700px;
  height: fit-content;
  background-color: rgb(20, 20, 20);
  border: 1px solid;
  border-radius: 5px;
  border-color: rgb(50, 50, 50);
}

.material-message {
  text-align: center;
}

.material-title {
  font-size: 30px;
  font-weight: bold;
  padding-top: 30px
}
  
.material-desc {
  padding: 20px;
}

.material-input {
  width: 650px;
  height: 300px;
  box-shadow: 0px 5px 10px rgb(0, 0, 0, 0.5);
  resize: none;
  scrollbar-width: none;
  background-color: rgb(15, 15, 15);
  padding: 10px;
}

.material-button-container {
  width: fit-content;
  margin-left: 350px;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.material-cancel {
  width: fit-content;
  height: fit-content;
  padding: 15px;
}

.material-cancel:hover {
  background-color: rgb(40, 40, 40);
  cursor: pointer;
}

.material-continue {
  width: fit-content;
  height: fit-content;
  background-color: rgb(0, 150, 200);
  border: none;
  padding: 15px;
}

.material-continue:hover {
  background-color: rgb(100, 160, 180);
  cursor: pointer;
}

.bottom-text-holder {
  position: fixed;
  width: fit-content;
  height: fit-content;
  left: 10px;
  bottom: 0px;
  display: flex;
}

.bottom-text {
  padding: 20px;
  color: rgb(150, 150, 150);
  font-size: 13px;
}

.bottom-text:hover {
  text-decoration: underline;
  color: rgb(200, 200, 200);
  cursor: pointer;
}

.email-title {
  color: rgb(150, 150, 150); 
}

.email-content {
  color: rgb(100, 100, 255);
}

.privacy-policy-container {
  margin-left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  overflow-y: scroll;
  padding: 10px;
  text-align: left;
  scrollbar-width: none;
  background-color: rgb(15, 15, 15);
}