/* Online Booking Button Styling */
.online-booking-button {
    background-color: #04B5A4;
    color: white;
    padding: 4px 12px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    font-size: 25px !important; /* Force the font size change */
    
    position: fixed;  /* Makes the button fixed on the screen */
    bottom: 20px;      /* Position it 20px from the bottom of the screen */
    left: 50%;         /* Center it horizontally */
    transform: translateX(-50%); /* Adjust to perfectly center */
    z-index: 1000;     /* Ensure it is above other content */
    transition: background-color 0.3s; /* Optional smooth transition for hover effect */
    white-space: nowrap;  /* Prevent text from wrapping */
}

/* Hover effect */
.online-booking-button:hover {
    background-color: #005bb5;
}