.mobile-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0;  /* Removed padding to ensure buttons fit within 100% */
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden; /* Ensures no overflow due to padding or other content */
}
.button1{
	background:#D9D8D6;
	color:#000;
}

.button2{
	background:#CBA48D;
}
.mobile-bottom-buttons a {
    color: #000;
    text-decoration: none;
    padding: 5px 0; /* Top/bottom padding */
    border-radius: 0; /* Removed border radius for full-width look */
    font-size: 16px;
    transition: background-color 0.3s;
    width: 50%;  /* Each button takes up 50% of the space */
    text-align: center; /* Center text inside the button */
    box-sizing: border-box; /* Ensures padding is included within width */
}

.mobile-bottom-buttons a:hover {
    background-color: #005f8d;
}

@media (min-width: 768px) {
    .mobile-bottom-buttons {
        display: none;
    }
}
