.bookwp-coupon-section {
    margin-bottom: 20px;
}

.bookwp-coupon-section .bookwp-card-title-top-details {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase;
}

.bookwp-coupon-section .bookwp-coupon-form {
    display: flex;
    align-items: stretch;
    /* Ensure equal height */
}

.bookwp-coupon-section .bookwp-coupon-input-wrapper {
    display: flex;
    flex: 1;
    /* Allow input to grow */
}

.bookwp-coupon-section #bookwp-coupon-code {
    width: 100%;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 10px 12px;
    font-size: 14px;
    color: #374151;
    transition: border-color 0.15s ease-in-out;
    margin: 0;
    box-shadow: none;
    outline: none;
    min-height: 42px;
    background-color: #f9fafb;
    box-sizing: border-box;
}

.bookwp-coupon-section #bookwp-coupon-code:focus {
    border-color: var(--color-blue-500);
    outline: none;
}

.bookwp-coupon-section .bookwp-btn-coupon {
    padding: 10px 20px;
    background-color: var(--color-blue-500);
    color: #fff;
    border: 1px solid var(--color-blue-500);
    /* Match background or slightly different? */
    border-left: none;
    /* Removed to merge */
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.2s;
    margin: 0;
    min-height: 42px;
    box-sizing: border-box;
}

.bookwp-coupon-section .bookwp-btn-coupon:hover {
    background-color: var(--color-blue-600, #2563eb);
    border-color: var(--color-blue-600, #2563eb);
}

.bookwp-coupon-section .bookwp-btn-coupon:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.bookwp-coupon-section .bookwp-coupon-message {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 500;
    display: none;
}

.bookwp-coupon-section .bookwp-coupon-message.success {
    color: #28a745;
}

.bookwp-coupon-section .bookwp-coupon-message.error {
    color: #dc3545;
}

.bookwp-coupon-section .bookwp-remove-coupon {
    background-color: #dc3545;
    border-color: #dc3545;
    border-radius: 0px 6px 6px 0px;
    display: none !important;
}

.bookwp-coupon-section.coupon-applied .bookwp-remove-coupon {
    display: block !important;
}

.bookwp-coupon-section.coupon-applied .bookwp-apply-coupon {
    display: none !important;
}

.bookwp-container .bookwp-success-container,
.bookwp-container .bookwp-booking-form-grid,
.bookwp-container .bookwp-booking-fields-container {
    height: 700px !important;
}