/* Sticky Footer CSS */
html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 200px; /* Adjust based on footer height */
}

#wrapper-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Alternative flexbox method */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

#page {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

#content {
    flex: 1 0 auto;
}

#wrapper-footer {
    flex-shrink: 0;
    margin-top: auto;
}
