* {
  box-sizing: border-box;
}

html, body, main#app {
  min-height: 100%;
}

body[data-bs-theme="dark"] { 
  background-color: #212529 !important;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: black;
  background-color: white;
}

.pointer {
  cursor: pointer;
}

.text-gradient {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-hover-primary:hover {
  color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
  text-decoration: underline;
  cursor: pointer;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.5rem;
  border-bottom: solid 1px #aaa;
  background-color: #eee;
}

nav a {
  display: inline-block;
  min-width: 9rem;
  padding: 0.5rem;
  border-radius: 0.2rem;
  border: solid 1px #aaa;
  text-align: center;
  text-decoration: none;
  color: #555;
}

nav a[aria-current='page'] {
  color: #000;
  background-color: #d4d4d4;
}

main {
  padding: 0rem;
}

h1 {
  font-weight: bold;
  font-size: 1.5rem;
}

.border-highlight {
  border: #383b39 1px solid;
}

.shadow-border-highlight {
  border: #383b39 1px solid !important;
  box-shadow: var(--bs-box-shadow), var(--bs-box-shadow) !important;
}

.components-bookmarklist {
  position: fixed;
  right: 0;
  top: 80px;
  height: calc(100vh - 80px);
  overflow: auto;
  width: 200px;
  background-color: #212529;
}