  .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .inputs, .results {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
  }
  
  h2, h3 {
    color: #333;
  }
  
  .input-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-top: 15px;
    padding-bottom: 9px!;
  }
  
  /* Das Info-Icon neben der Beschriftung */
  .info-icon {
    cursor: pointer;
    margin-left: 5px;
    background-color: #555;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }
  
  /* Der erklärende Text ist zunächst verborgen */
  .info-text {
    display: none;
    font-size: 12px;
    color: #777;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  
  select, input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border-radius: 9px;
    border: 1px solid #ccc;
    color: #555;
    font-size: 14px;
  }
  
  /* Button-Styling */
  button {
    background-color: #98C031;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 9px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
    margin-top: 15px;
  }
  
  button:hover {
    background-color: #DBEDAD;
    color: #555;
  }
  
  /* Ergebnisboxen */
  .result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  
  .result-box {
    text-align: left;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive Anpassungen */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      align-items: stretch;
    }
    
    .result-grid {
      grid-template-columns: 1fr;
    }
    
    button {
      width: 100%;
      margin-top: 15px;
    }
  }
  