/* Stop page scroll */
/* html, body {
    height: 100%;
    overflow: hidden; 
} */

/* Layout containers */
.fullscreen-wrapper {
    height: calc(100vh - 80px); /* adjust for main header height */
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Universal form wrapper - NO ID needed */
.form-scroll-layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Sticky Header (below top main navbar) */
.program-header {
    position: sticky !important;
    top: 80px; /*  match your navbar height */
    z-index: 1070;
    background: #fff;
}

/* Scrolling body */
.program-scroll-area {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 0;
}

.dataTables_wrapper {
    max-height: 570px;   
    overflow-y: auto;
}

.dataTables_wrapper thead{
    position: sticky;
    top: 0;
    z-index: 2;
    background: #f8f9fa;   /* same as header */
}

