/* Copyright © 2026 YourQuiz. All rights reserved. */

/* ====== Quiz Links Page ======== */
.title-head {
  font-weight:bold;
  font-size: 19px;
}

#quiz-static-container {
  display: flex;
  gap: 3px;
  padding: 6px 70px 20px 70px !important; /* top, right. bottom. left*/  
}

.quiz-link-container {
  max-height: calc(100vh - 285px); 
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  overflow-y: auto !important;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #e5e5e5 transparent; 
}

.quiz-link {
  display: block;
  padding: 7px;
  background: #ecf0f1;
  color: #2980b9;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
}

.quiz-link:hover {
  background: #e2e7e9;
  
}

/* ====== Quiz Page ======== */

.quiz-container{
  width:100%;
  max-height: calc(100vh - 225px); 
  overflow-y: auto !important;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #e5e5e5 transparent; 
}

.quiz-question{
  margin-top:20px;
  margin-bottom:20px;
}

.question-label,
.options-label,
.explanation-label{
  font-weight:bold;
}

.answer-label {
  font-size:16px;
}


.question-text{
  margin-top:5px;
  margin-left:5px;

}

.quiz-options-section{
  margin-bottom:20px;
}

.options-list{
  margin-top:5px;
}

.option-item{
  margin-bottom:5px;
}

.answer-button-container{
  margin-top:15px;
}

.answer-timer-wrapper {
  display: flex;          /* Aligns children horizontally */
  justify-content: space-between; /* Pushes button to left, timer to right */
  align-items: center;    /* Centers both items vertically */
  gap: 15px;              /* Adds spacing between them if they get close */
  width: 230px;            /* Spans full width of the screen */
  padding: 10px;          /* Adds breathing room inside container */
}

.answer-button {
  font-size: 16px;
  font-family: Arial, sans-serif;
  padding: 6px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  border: 2px solid #9e9e9e;
  background-color: #1398cd;
  color: white;
  margin-bottom:20px;
}

#staticTimerDisplay {
  font-size: 16px;
  font-weight: bold;
}

.back-link-container{
  margin-top:15px;
}

.back-link {
  display: block;
  padding: 7px;
  background: #ecf0f1;
  color: #2980b9;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size:16px;
  width: 144px
}

.back-link:hover {
  background: #e2e7e9;
}

.answer-box{
  margin-top:5px;
}

.correct-answer{
  margin-bottom:15px;
}

.answer-text-section{
  margin-top:5px;
  margin-bottom:20px;
}

.explanation-section{
  margin-top:10px;
}

.explanation-text-section{
  margin-top:5px;
  margin-bottom:20px;
}

.explanation-text{
  line-height:1.5;
}