.choices__inner {
  max-width: 320px !important;
}
.form-control .choices__list--dropdown {
  max-width: 320px !important;
}


.multiselect-container {
  border: 1px solid #ccc;
  max-height: 300px;
  overflow-y: auto;
}

/* Ausgewählte Elemente */
.multiselect-selected-text {
  color: #333;
  font-weight: bold;
}

/* Checkboxen */
.multiselect-container input[type="checkbox"] {
  margin-right: 5px;
}

button.multiselect-option {
    background-color:#FFF;
	border: 0px;
	width: 280px;
	text-align: left;
}


.form-check-label {
  
}

  /* Adjust spacing between form elements */
  .form-group {
    margin-bottom: 20px;
  }

  /* Style the submit button */
  .btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
  }

  /* Style the select dropdown */
  select.form-control {
    height: auto;
  }

  /* Style the multiselect dropdown */
  .btn-group > .btn {
    margin-right: 5px;
  }

  /* Adjust the layout for small devices */
  @media (max-width: 768px) {
    .form-group {
      margin-bottom: 15px;
    }
    .btn-primary {
      padding: 8px 16px;
    }
  }

  /* Set the background color for the form */
  form.needs-validation {
    padding: 20px;
    border-radius: 5px;
  }

  /* Style labels for consistent spacing */
  form.needs-validation label {
    padding: 5px;
  }

  /* Style input fields for consistent spacing */
  form.needs-validation input,
  form.needs-validation select,
  form.needs-validation textarea {
    padding: 5px;
  }

  /* Use flexbox to align form elements */
  form.needs-validation .form-group {
    display: flex;
    flex-direction: column;
  }

