/* Visual Composer Toggle Height Animation Fix */

/* Hide the default VC toggle content initially */
.vc_toggle_content {
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    height: 0 !important;
}

/* When toggle is open, set height to auto */
.vc_toggle.vc_toggle_active .vc_toggle_content {
    height: auto !important;
}

/* Ensure smooth transition */
.vc_toggle_content * {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.vc_toggle.vc_toggle_active .vc_toggle_content * {
    opacity: 1;
}

/* Fix for calendar elements inside toggle */
.vc_toggle.vc_toggle_active .vc_toggle_content .simcal-default-calendar {
    opacity: 1;
}

/* Ensure calendar tables are visible when toggle is active */
.vc_toggle.vc_toggle_active .vc_toggle_content .simcal-default-calendar table {
    opacity: 1;
}

/* Add a small delay for calendar initialization */
.vc_toggle.vc_toggle_active .vc_toggle_content .simcal-default-calendar {
    transition-delay: 0.1s;
}
