:root {
  --app-primary-color: #ffb400;
}

.bg-app-primary {
  background-color: var(--app-primary-color);
}

.fixed-header {
  overflow-y: auto;
  height: 70vh;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--bs-primary);
}

.fixed-header thead th {
  position: sticky;
  top: 0;
  z-index: 100;
}

::-webkit-scrollbar {
  width: 0.3em;
  height: 0.3em;
}

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
  border-radius: 10px;
}

