body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}
.header {
  padding: 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slogan {
  font-size: 0.9rem;
  color: var(--bs-secondary-color);
}
.logo {
  margin-top: 0.5rem;
}
.logo img {
  height: 50px;
  object-fit: contain;
}
/* Inactive nav-links (default) */
.nav-link {
  color: #444 !important;
}
/* Active nav-link in light mode */
[data-bs-theme="light"] .nav-link.active {
  color: #000 !important;
}
/* Inactive nav-links in dark mode */
[data-bs-theme="dark"] .nav-link {
  color: #aaa !important;
}
/* Active nav-link in dark mode */
[data-bs-theme="dark"] .nav-link.active {
  color: #fff !important;
}
/* Optional: hover styling */
.nav-link:hover {
  text-decoration: none;
}
/* Optional: makes the table rounded */
.table {
  border-radius: 0.5rem;
  overflow: hidden;
}
.table thead th {
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-body-color);
  position: sticky;
  top: 0;
  z-index: 10;
  font-weight: 600;
}
.table td, .table th {
  vertical-align: middle;
  border-color: var(--bs-border-color-translucent);
}
.btn-sm {
  padding: 0.25rem 0.5rem;
}
.footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid var(--bs-border-color);
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--bs-secondary-color);
}
.form-switch label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
}
.sort {
  background: none;
  border: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}
#themeToggleBtn i {
  transition: color 0.3s;
}
[data-bs-theme="dark"] #themeToggleBtn .fa-sun,
[data-bs-theme="dark"] #themeToggleBtn .fa-pen,
[data-bs-theme="dark"] #themeToggleBtn .fa-plus,
[data-bs-theme="dark"] #themeToggleBtn .fa-ban,
[data-bs-theme="dark"] #themeToggleBtn .fa-trash,
[data-bs-theme="dark"] #themeToggleBtn .fa-right-to-bracket,
[data-bs-theme="dark"] #themeToggleBtn .fa-chart-simple {
  color: #ffffff;
}
.bg-success-light {
  background-color: #9138a1 !important;
}
