
.button-container {
    display: flex; /* Enables flexbox */
    flex-direction: column;
    align-items: center; /* Center buttons horizontally */
    gap: 20px; /* Space between buttons */
    width: 100%; /* Full width */
    position: sticky;
    top: 0; /* Adjust the sticky position */
}

.button-container a {
    width: 80%; /* Full width inside container */
    display: flex;
    align-items: center; /* Align icon and text */
    justify-content: center; /* Center content */
    gap: 10px; /* Space between icon and text */
    font-size: 16px;
    padding: 10px;
    border-radius: 5px; /* Rounded corners */
    background-color: #096b81;
}

.button-container button i {
    font-size: 18px; /* Adjust icon size */
}