/* Branch tab content — hidden by default, visible when active */
.branch-content {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.branch-content.branch-active {
  display: block;
  opacity: 1;
}

/* Material Symbols filled variant */
.icon-filled {
  font-variation-settings: 'FILL' 1;
}
