.sidebar-nav {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}


#logout-form {
  display: inline;
}

#logout-form button {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: start;
  /* padding: 0; */
  /* text-decoration: underline; */
}

#logout-form button:hover {
  color: white;
  background-color: var(--bs-success);
  border: none;
  cursor: pointer;
  /* padding: 0; */
  /* text-decoration: underline; */
}

.tiny {
  font-size: 0.75rem !important;
  /* font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem); */
  /* Adjust the size as needed */
}

.tiny-responsive {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem);
  /* Adjust the size as needed */
}


/*
@media (max-width: 575.98px) {
  .responsive-small {
    font-size: 0.875rem;
  }
} */



.nav-link {
  color: white;
}

.nav-link:hover {
  color: white;
  background-color: var(--bs-success);
}

.nav-link.active {
  color: yellow !important;
  font-weight: bold;
}

.nav-link.disabled {
  color: var(--bs-tertiary-color);
  text-decoration: line-through;
}

.nav-link.forbidden {
  color: var(--bs-tertiary-color);
  text-decoration: line-through;
}


/* .nav_link.debug_show_all_nav{
  color: var(--bs-tertiary-color);
} */

.material-icons.blue {
  color: var(--bs-primary);
}

.material-icons.primary {
  color: var(--bs-primary);
}

.material-icons.success {
  color: var(--bs-success);
}

.btn-round {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.btn-xs {
  --bs-btn-padding-y: .05rem;
  --bs-btn-padding-x: .05rem;
  --bs-btn-font-size: .05rem;
}


/* Automatically change the expand/collapse icon in Bootstrap's collapse */
.collapse-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.collapse-icon {
  transition: transform 0.3s ease;
}

.collapse-icon-more {
  transition: transform 0.3s ease;
}

.collapsed .collapse-icon {
  transform: rotate(180deg);
}

.collapse-toggle:not(.collapsed) .collapse-icon {
  transform: rotate(0deg);
}

.collapsed .collapse-icon-more {
  transform: rotate(0deg);
}

.collapse-toggle:not(.collapsed) .collapse-icon-more {
  transform: rotate(180deg);
}

/* Add margin to the top of the search input to account for fixed headers */
.search-input-margin-top {
  scroll-margin-top: 80px;
}

.btn-xs {
  padding: 0.25rem 0.4rem;
  font-size: 0.75rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}