/* static/css/styles.css */

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and HTML should take full height */
html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Main wrapper that allows the footer to stick */
body {
    display: flex;
    flex-direction: column;
}

/* Header and footer styling */
header, footer {
    background-color: #001a35;
    text-align: center;
    padding: 10px 0;
}

/* Main content area styling */
main {
    flex: 1;
    padding: 20px;
}

/* Footer specific styling */
footer {
    background-color: #001a35;
    padding: 10px 0;
    text-align: center;
    margin-top: auto; /* Pushes the footer to the bottom */
}

footer p {
    margin: 5px 0;
    color: #ffffff;
}

footer a {
    text-decoration: none;
    color: #ffffff;
}

footer a:hover {
    color: #ffffff;
}
