html, body {
    height: 100%;
    margin: 0;
}

#wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#content-wrapper {
    flex: 1;
    overflow-y: auto; /* Add this to enable scrolling when content overflows */
}

footer {
    height: 10%;
}