.wpbk-package-booking {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: "Segoe UI", sans-serif;
}

.wpbk-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.wpbk-packages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.wpbk-package-option label {
    margin-left: 5px;
    font-weight: 500;
}

.wpbk-qtys {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.wpbk-qtys div {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
}

.wpbk-qtys label {
    margin-bottom: 5px;
    font-weight: 500;
}

.wpbk-qtys input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.wpbk-date {
    margin-bottom: 20px;
}

#wpbk_date {
    background-color: #F57B19;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    padding-left: 40px;
    width: 100%;
    max-width: 280px;
    text-align: left;
}

#wpbk_date::before {
    content: "\1F4C5";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.wpbk-summary {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0071a1;
}

#wpbk_book_now {
    background: #0071a1;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#wpbk_book_now:hover {
    background: #005e8a;
}

@media (max-width: 768px) {
    .wpbk-qtys {
        flex-direction: column;
    }

    .wpbk-qtys div {
        width: 100%;
    }

    #wpbk_date {
        width: 100%;
    }
}
