  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    background-color: #f4f6f8;
    color: #333;
    margin: 0;
  }

  h2 {
    text-align: center;
    color: #2a2a2a;
    margin-bottom: 30px;
    font-size: 1.5rem;
  }

  .question {
  display: none;
	opacity: 0;
	transition: all 2s;
    margin-bottom: 25px;
    background-color: #ffffff;
    border: 1px solid #d0d7de;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .question button {
  margin-top: 20px;
}

  
  #submission, #reload {
   display: none;
	opacity: 0;
	transition: all 2s;
  }

  .question p {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .question label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    cursor: pointer;
  }

  .feedback {
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.95rem;
  }

  button {
    display: block;
    margin: 30px auto;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: green;
    background-color: white;
    border-radius: 15px;
    border: 2px solid green;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  button:hover {
    background-color: green;
    color: white;
  }

  input[type="radio"] {
    margin-right: 8px;
  }

  /* Responsive container for larger screens */
  @media (min-width: 600px) {
    .question {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    h2 {
      font-size: 2rem;
    }
  }
  
  #progress-bar-container {
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #43cea2, #185a9d);
  transition: width 0.5s ease;
}

#progress-bar-container:hover {
  box-shadow: 0 0 10px rgba(0, 128, 0, 0.3);
}
	
#score-summary, #score-remark {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fa-solid.fa-bolt {
      color: gold;
    }