/* General body and background styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f4f8;
    color: #333;
  }
  
  /* Header and welcome message styles */
  h3 {
    color: #205081;
  }
  
  /* Input and button styling */
  input[type="email"], input[type="password"], button {
    width: calc(100% - 22px);
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 2px solid #205081;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  button {
    background-color: #205081;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #1e4a72;
  }
  
  /* Module and question styling */
.module {
    margin-bottom: 20px;
  }
  
  .module h4 {
    font-size: 2em;
    font-weight: bold;
  }
  
  .question {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .question p {
    font-size: 1.2em;
  }
  
  
  .answer-buttons {
    display: flex;
    flex-wrap: wrap;
  }
  
  .answer-buttons button {
    flex: 1 1 auto;
    margin: 5px;
    padding: 10px;
  }
  
  .answer-buttons button.selected {
    background-color: #28a745;
    color: white;
  }
  
  /* Progress bar styling */
  .progress-bar {
    height: 30px;
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .progress {
    height: 100%;
    width: 0;
    background-color: #007bff;
    border-radius: 5px;
    text-align: center;
    color: white;
    line-height: 30px;
    transition: width 0.3s;
  }
  
  /* Navigation buttons */
  .navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  /* Result styling */
.result {
    text-align: center;
    margin-top: 50px;
  }
  
  .result p {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    button {
      width: 100%;
    }
  }