#navdropdowntoggler {
	width: 56px;
	height: 40px;
	background-size: 30px;
}

#navdropdowntoggler > .dropdown-toggle {
	width: 100%;
	height: 100%;
}

#navdropdowntoggler > .dropdown-toggle::after {
	content: none;
}

.accordion-button {
	color: rgb(34, 34, 34);
	background-color: rgba(0, 0, 0, 0.03);
}

.accordion-button:not(.collapsed) {
	color: rgb(34, 34, 34);
	background-color: rgba(0, 0, 0, 0.03);
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Clinical Outcomes Page Navigation Styles */
.nav-item-custom {
  background-color: white !important;
  color: black !important;
  border-radius: 8px;
  margin: 5px;
  padding: 8px 16px;
  transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.nav-item-custom:hover {
  background-color: #e0e0e0 !important;
  color: black !important;
  transform: scale(1.02);
}

.nav-item-custom.active {
  background-color: #36454F !important;
  color: white !important;
  font-weight: bold;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-link:hover {
    color: #000;
    font-weight: bold;
    transform: scale(1.03);
    transition: all 0.2s ease-in-out;
}

/* ── Mobile graph-card adjustments (no desktop impact) ─────────────── */
@media (max-width: 768px) {
  /* Ensure plot cards have enough height on phones; no vertical scroll inside cards */
  .graph-card-body {
    min-height: 320px;
  }
}