html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

:root{
  --card-radius: 16px;
}

.brand-mark{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
}

.brand-dot{
  width:12px;height:12px;border-radius:999px;
  background: #0d6efd;
  box-shadow: 0 0 0 6px rgba(13,110,253,.12);
}

.card-soft{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--card-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.chip{
  display:inline-flex;
  align-items:center;
  padding:.35rem .6rem;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:white;
  text-decoration:none;
  color: inherit;
  font-size:.9rem;
}

.chip:hover{
  border-color: rgba(13,110,253,.35);
  box-shadow: 0 8px 20px rgba(13,110,253,.10);
}

.codewrap{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #0b1020;
}

.codebar{
  background: rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .6rem .75rem;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
}

.codebar .meta{
  display:flex; gap:.5rem; align-items:center;
}

.codebar .pill{
  padding:.15rem .5rem;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  font-size:.8rem;
}

pre.code{
  margin:0;
  padding: 1rem;
  color:#e9f0ff;
  font-size: .92rem;
  line-height: 1.45;
  overflow:auto;
}

.previewbox{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background:white;
}

kbd{
  border:1px solid rgba(0,0,0,.15);
}

      .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }
      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }
      .b-example-divider {
        width: 100%;
        height: 3rem;
        background-color: #0000001a;
        border: solid rgba(0, 0, 0, 0.15);
        border-width: 1px 0;
        box-shadow:
          inset 0 0.5em 1.5em #0000001a,
          inset 0 0.125em 0.5em #00000026;
      }
      .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
      }
      .bi {
        vertical-align: -0.125em;
        fill: currentColor;
      }
      .nav-scroller {
        position: relative;
        z-index: 2;
        height: 2.75rem;
        overflow-y: hidden;
      }
      .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }
      .btn-bd-primary {
        --bd-violet-bg: #0D6EFD;
        --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
        --bs-btn-font-weight: 600;
        --bs-btn-color: var(--bs-white);
        --bs-btn-bg: var(--bd-violet-bg);
        --bs-btn-border-color: var(--bd-violet-bg);
        --bs-btn-hover-color: var(--bs-white);
        --bs-btn-hover-bg: #0D6EFD;
        --bs-btn-hover-border-color: #0D6EFD;
        --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
        --bs-btn-active-color: var(--bs-btn-hover-color);
        --bs-btn-active-bg: #0D6EFD;
        --bs-btn-active-border-color: #0D6EFD;
      }
      .bd-mode-toggle {
        z-index: 1500;
      }
      .bd-mode-toggle .bi {
        width: 1em;
        height: 1em;
      }
      .bd-mode-toggle .dropdown-menu .active .bi {
        display: block !important;
      }
	  
[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .card-soft,
[data-bs-theme="dark"] .border,
[data-bs-theme="dark"] .border-secondary-subtle {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

[data-bs-theme="dark"] .list-group-item {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

[data-bs-theme="light"] body,
[data-bs-theme="auto"] body {
  background-color: #f8f9fa;
}

.list-group-item .list-link {
  color: var(--bs-body-color);
  text-decoration: none;
  transition: color .15s ease;
}

.list-group-item .list-link:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 9999;
  width: 42px;
  height: 42px;
  border:2px;
  border: 1px solid #0D6EFD;
  background-color: #212529;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: #000;
  color: #fff;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

[data-bs-theme="dark"] .btn-outline-dark {
  color: var(--bs-secondary-color);
  border-color: var(--bs-secondary-border-subtle);
}

[data-bs-theme="dark"] .btn-outline-dark:hover {
  background-color: var(--bs-secondary-bg-subtle);
  color: var(--bs-body-color);
}

.headerbar{
  flex-wrap: wrap;
}

.headerbar__brand{
  width: 100%;
  text-align: center;
}

.headerbar__actions{
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px){
  .headerbar{
    flex-wrap: nowrap;
  }
  .headerbar__brand{
    width: auto;
    text-align: left;
  }
  .headerbar__actions{
    width: auto;
    margin-left: auto;  
    justify-content: flex-end;
  }
}

@media (max-width: 767.98px){
  .headerbar__brand{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: .5rem;
  }
}

