/* Ensure the body takes up the full height */
body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content should expand to fill available space */
.content {
    flex: 1;
}

/* Sticky footer styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: sticky;
    bottom: 0;
}

footer a {
	color: #fff;
}

.links-section {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.links-section a {
    display: block;
    margin-bottom: 5px;
    color: #0066cc;
    text-decoration: none;
}

.links-section a:hover {
    text-decoration: underline;
}
