
table {
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
}

tr {
    display: flex;
    flex-direction: row;
    width: 100%;
}

th, td {
    flex: 1;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: #f8f8f8;
}

.book-now {
    text-align: center;
    padding-top: 2px;
}

.book-now button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #d55437;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}