div.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: yellow;
    padding: 50px;
    font-size: 20px;
  }


  .sticky-button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ccc;
    z-index: 1000; /* Ensures it stays on top of other elements */
    display: flex;
    justify-content: center;
}
.sticky-button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px; 
}
.sticky-button:hover {
    background-color: #218838;
}