/* Reset and layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  #start-screen{
    text-align: center;
  }

  /* Section visibility */
  .hidden {
    display: none;
  }
  
  /* Buttons */
  button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    background: #007BFF;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s ease;
  }
  
  button:hover:not(:disabled) {
    background: #0056b3;
  }
  
  button:disabled {
    background: #cccccc;
    cursor: not-allowed;
  }
  
  /* Quiz header */
  .quiz-header {
    display: flex;
    justify-content: space-between;
    /* align-items: baseline; */
    /*flex-direction: row;*/
    margin-bottom: 1rem;
    
  }

  hr{
    margin-bottom: 1rem;
  }
  
  .status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
  }

  #user-selection-display{
    text-align: right; 
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  /* Settings */
  .settings {
    margin: 1rem 0rem;
  }
  
  .settings label {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  /* Question and answers */
  #question-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }



  #start-btn:after{
    content:" 🎮";
  }

  #triva::after{
    content:"🚦";
  }
  
  #answers-list {
    list-style: none;
    margin-top: 1rem;
  }
  
  #answers-list li {
    background: #e9e9e9;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  #answers-list li:hover:not(.disabled) {
    background: #d4d4d4;
  }
  
  .correct {
    background: #c8e6c9 !important;
  }
  
  .incorrect {
    background: #ffcdd2 !important;
  }
  
  .disabled {
    pointer-events: none;
    opacity: 0.6;
  }
  
  /* Summary screen styling */
  .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
  }
  

