#wrapper #content-wrapper {
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.question-block {
  margin-bottom: 25px;
  border-bottom: 1px solid #c7c8c9;
  padding-bottom: 15px;
}

.question {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.options {
  margin-bottom: 0;
}

.option {
  display: block;
  padding: 10px 15px;
  margin: 5px 0;
  background-color: #e9e9e987;
  border: 1px solid #c1c1c1;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  color: black;
  box-sizing: border-box;
  font-size: 1em;
}

.option.correct {
  background-color: #4CAF50;
  color: white;
  cursor: default;
}

.option.incorrect {
  background-color: #f44336;
  color: white;
  cursor: default;
}

.option.disabled {
  cursor: default;
  pointer-events: none;
  opacity: .8;
}

#scoreDisplay {
  font-size: 1.3em;
  margin-top: 20px;
}

#floatingStatus {
  position: fixed;
  bottom: 80px;
  right: -10px;
  background: #222;
  color: white;
  padding: 15px 15px;
  /*border-top: 0px;*/
  border-radius: 10px;
  border-top-right-radius: 0%;
  border-bottom-right-radius: 0%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  font-size: 1.1em;
  z-index: 1000;
  min-width: 220px;
  user-select: none;
}

#fig-btn {
  position: fixed;
  bottom: 30px;
  right: 10px;
  background: #222;
  color: white;
  padding: 15px 15px;
  /*border-top: 0px;*/
  border-radius: 10px;
  /*border-top-right-radius: 0%;*/
  /*border-bottom-right-radius: 0%;*/
  /*box-shadow: 0 0 10px rgba(0,0,0,0.3);*/
  font-size: 1.1em;
  z-index: 1000;
  min-width: fit-content;
  user-select: none;
}

