/* Common shared styles extracted from multiple templates */

/* Hide scrollbars */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Optional module with transition */
.modulo-opcional {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}
.modulo-opcional.activo {
    max-height: 500px;
    opacity: 1;
    padding-top: 1rem;
}
