/* styling */
.docs-toggle-button {
    cursor: pointer;
    float: left;
    width: 20px;
    height: 20px;
    margin: 0;
    vertical-align: middle;
}
body .is-layout-flex .docs-toggle-button,
.wedocs-single-content .wp-block-group h2,
.wedocs-single-content .wp-block-group h3,
.wedocs-single-content .wp-block-group h4  {
    margin-bottom: -4px !important;
    margin-right:20px;
    margin-top:0;
}
.wp-block-group.expand-title {
    padding: 30px 0;
}
p.docnote {
    background: #efefef;
    padding: 10px 5px;
    border-top: 1px solid #666;
	border-bottom: 1px solid #666;
}
.docexpander {
    display: block; /* Keep block for animations */
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-in-out; /* Adjust timing for effect */
}

.docexpander.expanded {
    max-height: 5000px; /* Large enough to reveal all content */
}
