/* Mobile responsiveness fixes */
@media (max-width: 768px) {
  /* General container adjustments */
  .app-container {
    overflow-x: hidden;
  }
  
  /* Header adjustments */
  .header-bar {
    padding: 0.75rem 1rem;
  }
  
  .logo {
    max-height: 30px;
  }
  
  /* Content adjustments */
  .screen-content {
    padding: 0.75rem;
    overflow-x: hidden;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  h2 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  /* Form and options adjustments */
  .option {
    padding: 0.75rem 0.5rem;
  }
  
  .option-text {
    font-size: 0.9rem;
  }
  
  .form-row {
    margin-bottom: 0.75rem;
  }
  
  .form-group {
    margin-bottom: 0.5rem;
  }
  
  /* Button adjustments */
  .btn {
    padding: 0.5rem 1rem;
  }
  
  .btn-large {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
  
  /* Results screen adjustments */
  .score-container.centered {
    margin-bottom: 1rem;
  }
  
  .score-circle {
    width: 100px;
    height: 100px;
  }
  
  .radar-chart-container {
    height: 250px;
    margin: 1rem auto;
  }
  
  .key-findings {
    padding: 1rem;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 1rem;
  }
  
  /* Force better fit on smallest screens */
  @media (max-width: 375px) {
    h1 {
      font-size: 1.5rem;
    }
    
    h2 {
      font-size: 1.1rem;
    }
    
    .score-circle {
      width: 80px;
      height: 80px;
    }
    
    .score-value {
      font-size: 1.5rem;
    }
    
    .score-max {
      font-size: 0.75rem;
    }
    
    .radar-chart-container {
      height: 220px;
    }
  }
  
  /* Force screen to fit viewport height */
  .screen {
    min-height: calc(100vh - 60px);
    height: auto;
    padding: 0;
  }
  
  /* Fix for screens that were causing scrolling issues */
  #screen-welcome .value-props ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
  }
  
  #screen-welcome .value-props li {
    margin-bottom: 0.5rem;
  }
  
  /* Fix for options that were causing scrolling */
  .options-container {
    margin-top: 1rem;
  }
  
  .options-container .option:last-child {
    margin-bottom: 0.5rem;
  }
  
  /* Adjust form container padding */
  .form-container {
    padding: 1rem;
  }
  
  /* Prevent horizontal overflow */
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
