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;
}

.sidebar-scroll {
  scrollbar-width: thin;
  scrollbar-color: #495057 #212529;
}
.sidebar-scroll::-webkit-scrollbar {
  width: 8px;
}
.sidebar-scroll::-webkit-scrollbar-track {
  background: #212529;
}
.sidebar-scroll::-webkit-scrollbar-thumb {
  background-color: #495057;
  border-radius: 4px;
}
.sidebar-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #6c757d;
}

html {
  position: relative;
  min-height: 100%;
}

.sidebar-group-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 0.75rem;
  text-decoration: none;
  border: 0;
  background: none;
}

.sidebar-group-toggle:hover, .sidebar-group-toggle:focus {
  color: rgba(255, 255, 255, 0.85);
}

.sidebar-caret {
  transition: transform 0.2s ease;
}

.sidebar-group-toggle[aria-expanded="true"] .sidebar-caret {
  transform: rotate(180deg);
}

nav li.nav-item {
  display: flex;
  align-items: center;
}

nav li.nav-item > .nav-link {
  flex: 1 1 auto;
  min-width: 0;
}

.btn-star {
  flex-shrink: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 0.4rem;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}

.btn-star:hover {
  color: #ffc107;
}

.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;
}