/* css/footer.css */

/* New Flexbox Layout */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto; /* Allow content to grow and shrink, but don't shrink smaller than content size */
}

/* Footer iframe styling */
iframe[src="/footer.html"], iframe[src="footer.html"] {
    flex-shrink: 0; /* Prevent the footer from shrinking */
    width: 100%;
    height: 60px; /* Adjust height as needed */
    border: none;
    background-color: transparent;
    overflow: hidden;
}
