/* 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;
}
