       /* Ensure the footer stays at the bottom */
        html, body {
            height: 100%;
            margin: 0;
        }
        .content {
            min-height: calc(100vh - 60px); /* Adjust the height of content to push footer down */
            display: flex;
            flex-direction: column;
        }
        footer {
            position: relative;
            bottom: 0;
            width: 100%;
        }