#question-container {
  margin-bottom: 20px;
}

button {
  margin: 5px;
  padding: 10px 20px;
}

.hiddenModal {
  display: none;
}


main#app {
  font-family: 'AvantGarde Bk BT Book', sans-serif !important;
  font-size: 16px;
}

.question-block {
  border-bottom: 1px solid #7A00E6;
  font-family: 'AvantGarde Bk BT Book', sans-serif !important;
  font-size: 16px;
  margin: 20px 0;
  padding: 30px 20px;
}

.question-block p {
  margin: 10px;
}

.options button {
  border-radius: 8px;
  border: 1px solid #7A00E6;
  color: #7A00E6;
  cursor: pointer;
  font-family: 'AvantGarde Bk BT Book', sans-serif !important;
  height: 54px;
  margin-right: 10px;
  padding: 0 20px;
  width: auto;
}

.options button.selected {
  background-color: #7A00E6;
  color: white;
  font-weight: bold;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  font-family: 'AvantGarde Bk BT Book', sans-serif !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.hiddenModal {
  display: none;
}

.modal-content {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

main#app button#download-pdf {
  background-color: #7A00E6;
  border-radius: 150px;
  color: white;
  font-weight: bold;
  padding: 12px 30px;
}

main#app div#modal-body {
    padding: 50px 0 0 0;
}

main#app div#modal-body h2 {
  color: #7A00E6;
  font-family: 'AvantGarde Bk BT Book', sans-serif !important;
  font-size: 24px;
  font-weight: bold;
}


button#calculate-btn {
  background-color: #7A00E6;
  border-radius: 150px;
  color: white;
  font-weight: bold;
  padding: 12px 30px;
}