body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}

#app {
  max-width: 600px;
  margin: 0 auto;
  padding: 0px;
}

#result-img {
  margin: auto;
  text-align: center;
  display: block;
}
#main-title {
  text-align: center;
  color: #3498db;
  font-size: 38px;
  font-weight: bold;
}

#start-screen,
#question-container,
#result-container {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

#start-screen p {
  margin-bottom: 15px;
}

#options-container {
  display: flex;
  flex-direction: column;
}

.option {
  margin: 5px 0;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.option:hover {
  background-color: #e6e6e6;
}

.option.selected {
  background-color: #3498db;
  color: #fff;
}

#start-btn,
#next-btn,
#restart-btn,
#copy-link-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

#start-btn:hover,
#next-btn:hover,
#restart-btn:hover,
#copy-link-btn:hover {
  background-color: #2980b9;
}

#score {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #3498db;
}

#diagnosis {
  font-size: 20px;
  font-weight: bold;
}

#progress-bar {
  width: 100%;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
}

#progress {
  height: 100%;
  background-color: #3498db;
  border-radius: 10px;
  transition: width 0.5s ease-in-out;
}

#diagnosis {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

#answers {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

#action-buttons {
  display: flex;
  justify-content: space-between;
}

#action-buttons button {
  width: 48%;
}

.answer-item {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.answer-question {
  font-weight: bold;
  margin-bottom: 5px;
}

.answer-selected {
  color: #3498db;
}

.answer-score {
  font-weight: bold;
  color: #e74c3c;
}

.warning {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
  font-style: italic;
}

@media (max-width: 600px) {
  #app {
    padding: 0px;
  }
  .option {
    padding: 15px 10px;
  }
  #action-buttons {
    flex-direction: column;
  }
  #action-buttons button {
    width: 100%;
    margin-bottom: 10px;
  }
}
