/* book.css */

#book-now {
    background-color: red;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

#book-now:hover {
    background-color: #218838;
}
