html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1; /* This takes up remaining space, pushes footer down */
}

/* Footer styles */
.custom-footer {
    background-color: transparent;
    color: #555; /* faded black */
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem 0;
}
.custom-footer p {
    margin: 0.2rem 0;
}
