html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.navbar .nav-link {
  border-radius: 0.5rem;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.navbar .nav-item.nav-item-active > .nav-link {
  background-color: #d9c2ff !important;
  color: #212529 !important;
}

.navbar .nav-item.nav-item-active > .nav-link:hover,
.navbar .nav-item.nav-item-active > .nav-link:focus,
.navbar .nav-item.nav-item-active > .nav-link.dropdown-toggle.show {
  background-color: #d9c2ff !important;
  color: #212529 !important;
}

.main-nav-menu {
  gap: 0.25rem;
  flex-grow: 0 !important;
}

.main-nav-menu > .nav-item {
  flex: 0 0 auto;
}

@media (min-width: 576px) {
  .main-nav-menu > .nav-item {
    flex: 0 0 140px;
  }
}

.main-nav-menu > .nav-item > .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  text-align: center;
}

.navbar .nav-item:not(.nav-item-active) > .nav-link:hover,
.navbar .nav-item:not(.nav-item-active) > .nav-link:focus,
.navbar .nav-item:not(.nav-item-active) > .nav-link.dropdown-toggle.show {
  background-color: #f0e4ff !important;
  color: #212529 !important;
}

.dropdown-menu .dropdown-item {
  transition: background-color 0.15s ease-in-out;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #f0e4ff;
  color: #212529;
}

.dropdown-menu .dropdown-item.dropdown-item-active,
.dropdown-menu .dropdown-item.dropdown-item-active:hover,
.dropdown-menu .dropdown-item.dropdown-item-active:focus {
  background-color: #d9c2ff !important;
  color: #212529 !important;
}

.table > tbody > tr > td,
.table > tbody > tr > th {
  background: transparent !important;
  --bs-table-accent-bg: transparent !important;
  --bs-table-striped-bg: transparent !important;
  transition: background 0.2s ease-in-out;
}

.table > tbody > tr {
  background: linear-gradient(90deg, #ffffff 0%, #f8f5ff 100%) !important;
  transition: background 0.2s ease-in-out;
}

.table > tbody > tr:hover {
  background: linear-gradient(90deg, #f0e4ff 0%, #e6d2ff 100%) !important;
}

table.dataTable > tbody > tr.odd,
table.dataTable > tbody > tr.even {
  background: linear-gradient(90deg, #ffffff 0%, #f8f5ff 100%) !important;
}

table.dataTable > tbody > tr.odd:hover,
table.dataTable > tbody > tr.even:hover {
  background: linear-gradient(90deg, #f0e4ff 0%, #e6d2ff 100%) !important;
}