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

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

.flex-grow-1 {
    flex-grow: 1;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; /* Adjust background color as needed */
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1); /* Optional: adds a slight shadow for better separation */
    display: flex;
    justify-content: center;
    align-items: center;
}
