body {
}

.nav-item {
  margin-left: 20px;
  text-decoration: none;
  color: inherit;
}

.navbar {
  margin-bottom: 15px;
}

.breadcrumb-item a {
  text-decoration: none;
  color: inherit;
}

.card {
  margin-bottom: 20px;
}

.btn-font-sm {
  font-size: 12px;
}

.table-simple {
}

.table-simple td {
  padding-left: 5px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.dropdown-item-text {
  cursor: pointer;
}

.dropdown.item {
  cursor: pointer;
}

.cursor-pointer {
  cursor: pointer;
}

.link-normal {
  text-decoration: none;
  color: inherit;
}

.card-highlight {
}

.card-highlight:hover {
  box-shadow: 0px 0px 6px 0px var(--bs-primary);
}

:root[data-bs-theme="light"], :root[data-bs-theme="auto"] {
  --body-shade: var(--bs-gray-200);
}

:root[data-bs-theme="dark"] {
  --body-shade: var(--bs-gray-800);
}

.bg-shaded {
  background-color: var(--body-shade) !important;
}

.fs-7 {
  font-size: 14px;
}

.fs-8 {
  font-size: 12px;
}

.hover-parent:hover .hover-show {
  opacity: 1;
  visibility: visible;
}

.hover-show {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: auto;
  cursor: pointer;
}

.skeleton {
  display: inline-block;
  font-size: inherit;
  width: 90%;
  height: 1.2em;
  border-radius: 4px;
  background-color: var(--bs-skeleton-bg, #e0e0e0);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect */

.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1.2em;
  background: linear-gradient( 90deg, transparent, var(--bs-skeleton-shimmer, rgba(255,255,255,0.6)), transparent );
  animation: shimmer 1s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

/* Light theme variables */

[data-bs-theme="light"] {
  --bs-skeleton-bg: #e0e0e0;
  --bs-skeleton-shimmer: rgba(255, 255, 255, 0.6);
}

/* Dark theme variables */

[data-bs-theme="dark"] {
  --bs-skeleton-bg: #3a3a3a;
  --bs-skeleton-shimmer: rgba(255, 255, 255, 0.2);
}

.th-top {
  position: sticky;
  top: 0;
}

