.crud.form .options .ui.table {
  margin-bottom: 10px;
}
.crud.form .ui.form {
  padding: 10px 0;
}
.crud.form .ui.form .fields {
  padding: 0;
}
.crud.form form {
  width: 100%;
  padding: 0;
}
.crud.form form .fields > * {
  padding: 0 10px;
  margin-bottom: 10px;
  width: auto;
}
.crud.form form label {
  position: relative;
}
.crud.form form label .value {
  float: left;
  margin-right: 5px;
}
.crud.form form label .required:before {
  margin: 0 5px;
  float: left;
}
.crud.form form > *,
.crud.form form .form-group {
  padding: 0 10px;
  margin-bottom: 10px;
  width: auto;
}
.crud.form form > * .control-label,
.crud.form form .form-group .control-label {
  max-width: 50%;
  display: block;
}
.crud.form form .help-block {
  margin: 5px 0;
  display: block;
  color: blue;
}
.crud.form form .form-group.dropdown label {
  display: inline-block;
  width: auto;
  line-height: 26px;
  margin-right: 10px;
}
.crud.form form .form-group.dropdown label .required:before {
  margin: 0;
  float: none;
  position: absolute;
  top: 0;
  right: -8px;
}
.crud.form form .form-group.dropdown .control-label {
  width: auto;
  display: block;
  float: left;
}
.crud.form .object-properties-field {
  padding: 0;
}
.crud.form .object-properties-field .add.button {
  padding: 0.4rem;
}
.crud.form .object-properties-field .item:hover .remove.button {
  display: inline-block;
}
.crud.form .object-properties-field .item {
  position: relative;
}
.crud.form .object-properties-field .item .remove.button {
  background: white;
  color: red;
  padding: 0.3rem;
  margin: 0;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}
.crud.form form.disabled .object-properties-field .remove.button,
.crud.form form.disabled .object-properties-field .add.button {
  display: none !important;
}
.crud.form table .ui.dropdown.selection {
  min-width: 100px;
}
.crud.form .ui.dropdown.selection {
  margin-left: 10px;
  padding: 5px;
}
.crud.form .required {
  display: inline-block;
}
.crud.form .required:before {
  content: "*";
  font-size: 16px;
  color: red;
  font-weight: normal;
  margin: 0 0.5em;
}
.crud.form > .buttons {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
}
.crud.form > .buttons .button {
  padding: 8px;
}
.crud.form > .buttons .spacer {
  flex-grow: 1;
}
