  .generator-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .option {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
  }
  label {
    margin: 10px 0 5px;
    flex: 1;
    text-align: left;
  }
  input[type="checkbox"], input[type="text"] {
    margin-right: 5px;
  }
  input[type="range"] {
    width: 100%;
  }
  .length-container, .quantity-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 50px;
  }
  .length-container label, .quantity-container label {
    white-space: nowrap;
    min-width: 130px;
  }
  .password-output-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }
  .single-password {
    position: relative;
    display: flex;
    align-items: center;
    background: #eee;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.2em;
    color: #333;
    width: 100%;
  	overflow-x: auto; 
  }
  .password-output {
    flex-grow: 1;
    text-align: left;
    padding-right: 40px;
	font-size: 0.8em;
  white-space: nowrap; 
  overflow-x: auto; 
  }
  .copy-button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    color: #007bff;
    display: flex;
    align-items: center;
    height: 60%;
    padding: 5px;
  }
  .copy-button:hover {
    color: #0056d2;
  }
  button {
    background: linear-gradient(135deg, #1abbd7, #007bff);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
  }
  button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  button:hover:enabled {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #0056d2, #003a91);
  }
.security-bar {
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, red, yellow, green); /* Farbverlauf von rot nach grün */
  border-radius: 5px;
  margin-top: 30px;
  position: relative;
}
.security-marker {
  position: absolute;
  top: -10px; /* Positioniert den Pfeil direkt über dem Balken */
  left: 0%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 15px solid #000; /* Der Pfeil wird hier erstellt */
  transition: left 0.3s ease; /* Der Marker bewegt sich mit einer sanften Animation */
}
.security-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.security-labels span {
  font-size: 0.8em;
  color: #333;
}
  @media (max-width: 600px) {
    .length-container, .quantity-container {
      flex-direction: column;
      align-items: flex-start;
	  margin-top: 5px;
      gap: 20px;
    }
  }