/* === style.css === */

/* Reset default browser spacing */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Main wrapper that ensures footer stays at bottom */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full viewport height */
}

/* Main content takes up remaining space */
#main_content {
    flex: 1;
}

/* Footer styling */
footer {
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa; /* light gray background */
    color: #333;
    border-top: 1px solid #ddd;
}