/* 
Theme Name: Southampton Port Parking
Theme URI: https://www.southamptonportparking.com/
Author: Freelance-Creator
Author URI: https://www.freelance-creator.com/
Template: astra
Version: 1.0.0
*/

.ast-logo-title-inline .ast-site-identity {
	padding: 0.5em 0;
}

.cpbs-booking-form-id-897.cpbs-google-map-enable-0 .cpbs-main-content .cpbs-main-content-step-1 .cpbs-form-panel {
	border: 0;
}

.cpbs-place-attribute-1 .cpbs-attribute-field, .cpbs-place-attribute-2 .cpbs-attribute-field {
	display: none;
}

.cpbs-form-panel+.cpbs-form-panel .cpbs-form-field.cpbs-form-field-width-50 {
	display: none;
}

.cpbs-main .cpbs-form-field .ui-selectmenu-button {
	padding: 17.5px 20px;
}

.cpbs-main.ui-datepicker table {
	border: 0;
}

.cpbs-main.ui-datepicker thead {
	border-width: 0;
}

.cpbs-main.ui-datepicker tbody {
	top: 0;
}

.cpbs-main.cpbs-google-map-enable-0 .cpbs-main-content .cpbs-main-content-step-1 .cpbs-form-panel, .cpbs-main.cpbs-booking-form-widget-mode .cpbs-main-content .cpbs-main-content-step-1 .cpbs-form-panel {
	border: 0;
}

.cpbs-booking-form-id-1240 .cpbs-button.cpbs-button-style-1 {
	color: #FFF;
}

.cpbs-booking-form-id-1240 .cpbs-button.cpbs-button-style-1:hover {
	color: #FFF;
}

@media screen and (max-width: 534px) {
	.cpbs-main .cpbs-main-content .cpbs-main-content-step-1 .cpbs-form-panel>div:first-child>div {
		padding-bottom: 30px!important;
	}
}

add_action('init', function () {
    if (!is_user_logged_in()) return;

    $booking_id = 1668;
    if (!get_post($booking_id)) {
        echo "Booking ID $booking_id not found.";
        exit;
    }

    $meta = get_post_meta($booking_id);
    echo '<pre>';
    print_r($meta);
    echo '</pre>';
    exit;
});
