/* Ensure all sections are collapsed by default */
.opblock-tag-section.is-open {
    /* Remove the is-open class behavior if needed */
}

/* Keep operations collapsed */
.opblock-tag-section .opblock {
    max-height: 0;
    overflow: hidden;
}

/* Show operations only when parent tag is clicked */
.opblock-tag-section.is-open .opblock {
    max-height: none;
    overflow: visible;
}

/* Optional: Collapse all tags on load */
.swagger-ui .opblock-tag-section {
    border-bottom: 1px solid rgba(59,65,81,.3);
}

/* Ensure smooth transitions */
.opblock-tag {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
