/* Add this to your style.css to ensure the footer is visible */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto; /* This forces the main content to push the footer to the bottom */
}

footer {
    flex-shrink: 0; /* This ensures the footer doesn't collapse */
    display: block !important; /* Forces visibility */
    background-color: #1e293b; /* slate-800 */
    min-height: 100px;
}