/* Ensure the body and main wrappers allow for sticky footers */
html, body {
    height: 100%;
    margin: 0;
}

.admin-layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* This tells the main content to take up all available space */
main.flex-grow {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}
