/* Sticky footer - simpler approach that actually works */
html {
    height: 100%;
}

body {
    min-height: 100vh; /* Use viewport height */
    display: flex;
    flex-direction: column;
    margin: 0;
}

.container {
    flex: 1 0 auto; /* This makes the container take up available space */
}

.footer {
    flex-shrink: 0; /* Prevent footer from shrinking */
    width: 100%;
    background-color: #f5f5f5;
    padding: 1rem 0;
    margin-top: auto; /* This pushes the footer to the bottom */
}

/* Additional styling to ensure proper spacing */
main.container, div.container {
    padding-top: 20px;
    padding-bottom: 20px;
}