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;
}

body.admin-body {
  background-color: #f5f6fa;
  min-height: 100vh;
}

.admin-topbar {
  background: #0d6efd;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: 56px;
}

.admin-side-nav {
  min-width: 240px;
  width: 240px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 56px;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 1020;
}

.admin-side-nav .nav-link {
  display: block;
  padding: 0.6rem 0.5rem;
  border-radius: 0.4rem;
  color: #0a0a0a;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}

.admin-side-nav .nav-link:hover {
  background-color: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
}

.admin-side-nav .nav-link.active {
  background-color: rgba(13, 110, 253, 0.12);
  color: #0d6efd;
  font-weight: 600;
}

.admin-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-main {
  margin-top: 56px;
  margin-left: 240px;
  min-height: calc(100vh - 56px);
}
