/*# sourceMappingURL=custom.css.map */
/* SETS FORM INPUT BACKGROUND COLOR WHEN IN DARK MODE */
[data-layout-mode="dark"] .form-control {
  background-color: #38424e;
}

/* /core/profile page back to top button */
#back-to-top {
  background-color: #58c6e6;
  border-color: #5a99ba;
}

/* /core/profile page textbox adjustments */
#profile-textboxes {
  width: 70%;
  min-width: 400px;
  max-width: 800px;
}

/* /core/profile indents company-related textboxes */
.company-grouped {
  margin-left: 40px;
}

/* /core/profile page adds a break at appropriate points*/
.company-label,
.theme-label {
  margin-top: 40px;
}

/* /core/profile align theme radio buttons horizontally */
.theme-container {
  display: flex;
  align-items: center; /* Optional: align items vertically in the middle */
  margin-top: 10px;
  margin-bottom: 40px;
}

/* /core/profile adds distance between radio buttons horizontally*/
.form-check {
  margin-right: 20px; /* Optional: add spacing between the radio inputs and labels */
}

/* /core/profile styles the save button*/
#save-profile-btn {
  margin-left: 45%;
  margin-bottom: 20px;
  max-width: 150px;
}
