/* Fix for excessive white space at bottom of page */
#react-entry-point,
#_dash-app-content,
#page-content {
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Ensure page content doesn't have excessive bottom margin/padding */
body > div,
body > div > div {
    min-height: 0 !important;
    padding-bottom: 0 !important;
}

/* Override any min-height settings on main containers */
.page {
    min-height: auto !important;
    padding-bottom: 10mm !important;
    margin-bottom: 10mm !important;
}

.subpage {
    min-height: auto !important;
    padding-bottom: 0 !important;
}

/* Remove excessive bottom spacing from rows */
.row:last-child {
    margin-bottom: 0 !important;
}

