.form-control,
.form-select,
textarea,
input,
button,
.btn,
.custom-file-label {
  border-radius: 10px !important;
}


.crmEntityFormView {
  border: transparent !important;
}

.input-group-addon:last-child {
  border-radius: 10px !important;
  margin-left: 2px !important;
}

.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group {
    margin-left: 2px !important;
}

.entitylist {
  width: 100% !important;
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

a:not(.btn) {
    text-decoration: unset !important;
}

.dropdown-menu {
  border-radius: 10px !important;
}


ul.dropdown-menu > li > a:hover,
ul.dropdown-menu > li > a:focus {
  background-color: #79cc66 !important;
  color: #ffffff !important;
}

.modal-content {
  border-radius: 10px !important;
}

/* Scope ONLY this specific form instance */
#EntityFormControl_EntityFormView.crmEntityFormView table.section {
    display: block !important;
    width: 100% !important;
}

/* break bootstrap table layout */
#EntityFormControl_EntityFormView.crmEntityFormView table.section > tbody {
    display: block !important;
}

#EntityFormControl_EntityFormView.crmEntityFormView table.section > tbody > tr {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 18px !important;
}

/* cells */
#EntityFormControl_EntityFormView.crmEntityFormView table.section td {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
}

/* remove empty cells */
#EntityFormControl_EntityFormView.crmEntityFormView td.zero-cell {
    display: none !important;
}

/* labels */
#EntityFormControl_EntityFormView.crmEntityFormView label {
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    display: block !important;
}

/* read-only values */
#EntityFormControl_EntityFormView.crmEntityFormView .form-control[readonly],
#EntityFormControl_EntityFormView.crmEntityFormView .form-control-static {
    width: 100% !important;
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
}