/* Reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #f9f9f9;
    font-family: Poppins, Arial, sans-serif;
    color: #2e2e2e;
  }

  h1 {
    color: #00437c;
  }


.logo-container {
  display: flex;
  justify-content: right;
  align-items: right;
  margin-bottom: 20px;
}

#logo {
  height: 150px;
}
  
  .container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #fff;
    border: 2px solid #00437c;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  /* Overall Progress Display */
  .progress-overall {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .progress-percentage {
    font-size: 1.2rem;
    color: #00437c;
    margin-bottom: 5px;
  }
  
  .progress-bar-container {
    background-color: #e6e6e6;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
  }
  
  .progress-bar {
    background-color: #00437c;
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
  }
  
  /* Survey Step Styling */
  .survey-step {
    margin-bottom: 30px;
  }
  
  /* Divider (Statement Header) */
  .step-divider {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00437c;
    border-bottom: 2px solid #00437c;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  
  /* Question Section */
  .question-section {
    margin-bottom: 20px;
  }
  
  .question-text {
    text-align: center;
    font-size: 1.2rem;
  }
  
  /* Rating Scale Layout */
  .rating-scale {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  /* Option (each rating circle & text) */
  .option {
    flex: 1;
    text-align: center;
    margin: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .option input {
    display: none;
  }
  
  .circle {
    width: 40px;
    height: 40px;
    border: 2px solid #00437c;
    border-radius: 50%;
    margin-bottom: 5px;
    transition: background-color 0.3s;
  }
  
  /* Descriptive text below each circle */
  .option-text {
    font-size: 0.8rem;
    color: #00437c;
    width: 80px; /* set a fixed width to align all labels */
  }
  
  /* When an option is selected, fill its circle */
  .option input:checked + .circle {
    background-color: #00437c;
  }
  
  /* Hover effect for the circle */
  .option:hover .circle {
    background-color: #959595;
  }
  
  /* Navigation Buttons for multi-step form */
  .navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .navigation button {
    flex: 1;
    padding: 12px 20px;
    margin: 0 5px;
    background-color: #00437c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .navigation button:hover {
    background-color: #0ab3eb;
  }

  .navigation button:disabled, button[disabled]{
    flex: 1;
    padding: 12px 20px;
    margin: 0 5px;
    background-color: #959595;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  