
.fixed-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white; /* Optional: to ensure it stands out */
    z-index: 1000; /* Optional: to ensure it stays on top */
}


.float-top {
    position: fixed;
    top: 0;
    background-color: white; /* Optional: to ensure it stands out */
    z-index: 1000; /* Optional: to ensure it stays on top */
    width: 100%;
}
    