/* custom-button.css */

/* Book Now matches See Availability */
#book-now {
    background: #ff5a5f !important; /* Same blue */
    color: white !important;
    font-family: 'Bubblegum Sans', sans-serif; /* Bubbly, rounded font */
    font-weight: bold; /* Same boldness */
    padding: 15px;
    border-radius: 8px; /* Same corners as See Availability */
    display: block;
    text-align: center;
    width: 100%; /* Full width like See Availability */
    box-sizing: border-box;
    transition: background 0.3s ease;
    margin-bottom: 15px; /* Keep spacing consistent */
}

/* Hover effect */
#book-now:hover {
    background: #ff5a5f !important;
}
