.quiz-detail-container {
  height: fit-content;
  width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background-color: #f7f9fc;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #333;
}

/* The box that contains the quiz itself */
.quiz-box {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 20px auto;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
}

/* Quiz header styling */
.quiz-header h2 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #333;
}

.timer {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Table of questions */
.question-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
}

.question-table th,
.question-table td {
  border: 1px solid #ccc;
  padding: 15px;
}

.question-table th {
  background-color: #f1f1f1;
  font-weight: normal;
  font-size: 16px;
  color: #555;
}

.question-text {
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
}

.answers {
  text-align: left;
}

.option-label {
  display: flex;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  color: #000;
}

.radioCheckbox {
  margin-right: 10px;
  transform: scale(1.1);
}

.custom-input,
.quizInput,
.essayTextarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  color: black;
}

.quizInput {
  width: 55px;
}

.button-container {
  margin-top: 25px;
}

.button-container button {
  background-color: rgb(50, 100, 225);
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 5px;
  transition: background-color 0.3s;
}

.button-container button:hover {
  background-color: #45a049;
}

.button-container button:disabled {
  background-color: #6B6B6B;
}

.removeButton {
  background-color: red;
  margin: 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 0px 6px;
}

.removeButton:hover {
  background-color: darkred;
  margin: 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 0px 6px;
}