.vertical-accordion-with-bg {
  /* Border for visual feedback */
  /* vertical-accordion-with-bg.css */
}
.vertical-accordion-with-bg .vab-tab {
  /* Ensure hardware acceleration for smoother transforms */
  will-change: flex, min-height;
  display: grid;
  grid-template-rows: 0fr; /* Initial state: collapsed content */
  transition: grid-template-rows 0.7s cubic-bezier(0.25, 1, 0.5, 1), flex 0.7s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s ease;
}
.vertical-accordion-with-bg .vab-tab.active {
  grid-template-rows: 1fr; /* Animate to full content height */
}
.vertical-accordion-with-bg {
  /* Ensure the inner content can overflow if higher than container */
}
.vertical-accordion-with-bg .vab-content {
  overflow: hidden;
  height: 100%;
}
.vertical-accordion-with-bg .vab-tab.active .vab-content {
  overflow-y: auto;
  /* Custom scrollbar for better aesthetics */
}
.vertical-accordion-with-bg .vab-tab.active .vab-content::-webkit-scrollbar {
  width: 4px;
}
.vertical-accordion-with-bg .vab-tab.active .vab-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.vertical-accordion-with-bg .vab-tab.active .vab-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.vertical-accordion-with-bg .vab-scroll-container {
  min-height: 100%;
  width: 100%;
}
.vertical-accordion-with-bg {
  /* Desktop horizontal hover effect (optional but nice) */
}
@media (min-width: 1024px) {
  .vertical-accordion-with-bg .vab-tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

/*# sourceMappingURL=vertical-accordion-with-bg.css.map */
