.sidebar-item-section > .sidebar-item-container > .sidebar-item-text {
    font-weight: bold;
}

.text-emphasis {
  font-size: 1.5em;
  color: #009BC1;
}

/* Container for the new button */
.collapse-toggle-container {
  /* Match the padding of the search bar container usually found in Quarto */
  padding: 0.5rem 1rem 1rem 1rem;
  display: flex;
  justify-content: center;
}

/* Style the button to mimic the search bar (Pill shape, light grey) */
.collapse-toggle-btn {
  width: 100%;
  font-size: 0.8rem;
  /* Make it a "pill" shape to match the search input */
  border-radius: 50rem; 
  /* Light grey background similar to the search input */
  background-color: #f8f9fa; 
  border: 1px solid #dee2e6; /* Subtle border */
  color: #6c757d; /* Muted text */
  transition: all 0.2s ease-in-out;
}

/* Hover state: slightly darker to indicate interactivity */
.collapse-toggle-btn:hover {
  background-color: #e9ecef;
  color: #000;
  border-color: #ced4da;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .collapse-toggle-container {
    margin-top: 10px;
  }
}
