/* Copyright © 2026 YourQuiz. All rights reserved. */


@media (min-width: 768px) and (max-width: 1023px) {

  .title-head {
    font-weight:bold;
    font-size: 18px;
  }
  
  #quiz-static-container {
    display: flex;
    gap: 3px !important;
    padding: 6px 20px 70px 30px !important; /* top, right. bottom. left*/
  }

  .quiz-link-container {
    max-height: none; 
    display: flex;
    flex-wrap: wrap;
    gap: 13px !important;
    overflow-y: hidden !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: 15px;
  }

  .quiz-link:hover {
    background: #e2e7e9;
  }

  .quiz-container{
    width:100%;
    max-height: none;
    overflow-y: hidden !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-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;
  }

  .back-link {
    display: block;
    padding: 7px;
    background: #ecf0f1;
    color: #2980b9;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size:16px;
    width: 159px
  }

  .back-link:hover {
    background: #e2e7e9;
  }

  .back-link-container{
    margin-top:15px;
  }

  .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;
  }

} 