/* Fix for scrolling on portal home page - ensure all content is accessible */
/* Only apply to portal home page to avoid affecting other pages */
.o_portal_my_home {
    overflow-y: visible !important;
    height: auto !important;
    min-height: auto !important;
}

.o_portal_my_home .o_portal_docs {
    min-height: auto !important;
    padding-bottom: 3rem !important;
    overflow: visible !important;
}

.o_portal_my_home .o_portal_category {
    margin-bottom: 1rem;
    overflow: visible !important;
}

.o_portal_my_home .o_portal_wrap .container {
    overflow: visible !important;
    height: auto !important;
}

/* Mobile specific adjustments - only for portal home */
@media (max-width: 767.98px) {
    .o_portal_my_home .o_portal_docs {
        padding-bottom: 4rem !important;
    }
    
    .o_portal_my_home .o_portal_category {
        margin-bottom: 1.5rem;
    }
}

