#app .answer-choice {
  display: inline-block;
  width: 200px;
  padding: 12px 16px;
  margin: 10px;
  font-size: 16px;
  font-family: 'Arial Regular', sans-serif;
  background-color: #ffffff;
  border: 2px solid #a3c4f3;
  border-radius: 12px;
  color: #1a1a1a;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(163, 196, 243, 0.2);
}

#app .wrong-answer {
  background-color: #ffe6e6;
  border: 2px solid #ff6b6b;
  color: #a80000;
  box-shadow: 0 4px 6px rgba(255, 107, 107, 0.3);
}

#app .right-answer {
  background-color: #d4f7d4;
  border: 2px solid #28a745;
  color: #155724;
  box-shadow: 0 4px 6px rgba(40, 167, 69, 0.3);
}

#app .answer-choice:not(.wrong-answer):not(.right-answer):hover {
  cursor: pointer;
  background-color: #e5f0f8;
  /* background-color: #0057ac; */
  /* color:black; */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(99, 144, 255, 0.4);
}

#app .category {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #0057ac;
  /* background-color: #a3c4f3; */
  border: 2px solid #000000;
  /* color: #333; */
  color: #ffffff;
  font-family: 'Arial Regular', sans-serif;
  font-size: 28px;
  text-align: center;
  padding: 16px 24px;
  margin: 30px auto 20px auto;
  border-radius: 16px;
  width: fit-content;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(255, 192, 203, 0.3);
}

#app .title {
  background-color: #0057ac;
  /* background-color: #a3c4f3; */
  border: 2px solid #a3c4f3;
  /* color: #1a1a1a; */
  color: #ffffff;
  font-family: 'Arial Regular', sans-serif;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  padding: 24px 32px;
  margin: 40px auto 30px auto;
  border-radius: 20px;
  width: fit-content;
  max-width: 90%;
  box-shadow: 0 8px 20px rgba(163, 196, 243, 0.5);
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}

#app .row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20%;
  margin-right: 20%;
}


#app .results-bubble {
  /* background-color: #0057ac; */
  /* background-color: #a3c4f3; */
  border: 2px solid #a3c4f3;
  /* color: #1a1a1a; */
  /* color: #ffffff; */
  font-family: 'Arial Regular', sans-serif;
  font-size: 30px;
  font-weight: normal;
  padding: 24px 32px;
  margin: 40px auto;
  border-radius: 20px;
  width: fit-content;
  max-width: 90%;
  box-shadow: 0 8px 20px rgba(163, 196, 243, 0.5);
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}

#app .result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
}

#app .col {
  flex: 1;
}

#app .category-name {
  font-weight: bold;
  text-align: left;
}

#app .category-score {
  text-align: right;
  font-weight: bold;
  color: #074b8a;
  /* color: #0057ac; */

}


#app .full-quiz-container {
  text-align: center;
  margin-bottom: 40px;
}

#app .full-quiz-btn {
  padding: 20px 40px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 12px;
}


#app .category-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#app .explanation-container {
  background-color: #e5f0f8;
  /* background-color: #0057ac; */
  border: 2px solid #a3c4f3;
  border-radius: 16px;
  padding: 24px 32px;
  margin: 20px auto;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(163, 196, 243, 0.3);
  font-family: 'Arial Regular', sans-serif;
  color: #1a1a1a;
  /* color: #ffffff; */
  line-height: 1.6;
  transition: all 0.3s ease-in-out;
}

#app .explanation-paragraph {
  font-size: 18px;
  margin-bottom: 16px;
}

#app .explanation-container ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

#app .explanation-bullet {
  font-size: 18px;
  margin-bottom: 8px;
  list-style-type: disc;
}


#app #options-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

#app #question-container {
  /* background-color: #0056ac; */
  /* background-color: #a3c4f3; */
  background-color: #e5f0f8;
  border: 2px solid #a3c4f3;
  color: #1a1a1a;
  font-family: 'Arial Regular', sans-serif;
  font-size: 28px;
  text-align: center;
  padding: 16px 24px;
  margin: 30px auto 20px auto;
  border-radius: 16px;
  width: fit-content;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(255, 192, 203, 0.3);
}

#app #next-question {
  display: block;
  margin: auto;

}


#app #feedback {
  color: #1a1a1a;
  font-family: 'Arial Regular', sans-serif;
  font-size: 28px;
  text-align: center;
  padding: 16px 24px;
  margin: 30px auto 20px auto;
  border-radius: 16px;
  width: fit-content;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(255, 192, 203, 0.3);
}



#app .start-quiz {
  display: block;
  margin: 20vh auto;
  padding: 20px 40px;
  font-size: 24px;
  font-family: 'Arial Regular', sans-serif;
}


#app {
  transform: scale(0.67);
  transform-origin: top left;
  width: calc(100% / 0.67);
  height: calc(100% / 0.67);
}

@media (max-width: 600px) {
  #app {
    font-size: 14px;
    padding: 1em;
  }
}

#app * {
  font-family: Arial, sans-serif;
}
