/* Container */
.role-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.2em;
  border-radius: 8px;
  max-width: 420px;
  margin: 1em auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Titel */
.role-form legend h2 {
  font-size: 1.4em;
  margin: 0 0 1em 0;
  color: #333;
}

/* Labels */
.role-form .form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.4em;
  color: #444;
}

/* Select schöner & größer */
.role-form select {
  width: 100%;
  padding: 0.8em;
  font-size: 1.1em;
  border: 2px solid #0078d7;
  border-radius: 6px;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='gray' height='24' width='24' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 24,0 12,12'/></svg>") no-repeat right 0.8em center;
  background-size: 1.2em;
  appearance: none; /* entfernt Standard-Pfeil */
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.role-form select:hover {
  border-color: #005a9e;
}

/* Checkbox */
.role-form input[type="checkbox"] {
  transform: scale(1.3); /* größer */
  margin-right: 0.5em;
  accent-color: #0078d7; /* moderne Browser: blaue Checkbox */
}

/* Submit-Button */
.role-form input[type="submit"] {
  background: #0078d7;
  color: #fff;
  border: none;
  padding: 0.7em 1.4em;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1em;
  margin-top: 1em;
  transition: background 0.2s ease;
}

.role-form input[type="submit"]:hover {
  background: #005a9e;
}
