#booking-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 30px 40px;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    font-family: 'Segoe UI', sans-serif;
    display: none; /* make sure it's hidden initially */
}

#booking-popup h2 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

#booking-popup form input,
#booking-popup form textarea,
#booking-popup form select {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

#booking-popup form input:focus,
#booking-popup form textarea:focus,
#booking-popup form select:focus {
    border-color: #C99340;
    outline: none;
}

#booking-popup .popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	border: none;
	font-size: 16px;
	cursor: pointer;
	color: #fff;
	transition: color 0.2s;
	width: max-content;
	padding: 0px;
	height: 35px;
	display: flex;
	align-items: center;
	border-radius: 20px;
	width: 35px;
	justify-content: center;
	line-height: 2px !important;
}

.wp_booking-form {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}
.wp_booking-form p {
    flex: 1;
}
.wp_booking-form label {
    display: flex;
    flex-direction: column;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}
.wp_booking-form input[type="text"],
.wp_booking-form input[type="date"],
.wp_booking-form input[type="number"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-top: 5px;
    border: 1px solid #33333326;
    background: #fff;width: 100%;
}
#booking-popup .popup-close:hover {
    background: #C99340;
}
span.wp_required {
    color: red;
}
p#wp_successMgs {
    color: #fff;display: none;
    text-align: center;
    margin-top: 20px;
    padding: 2px;
}

#booking-popup button[type="submit"] {
    color: #fff;
    border: none;
    margin-top: 20px;
    padding: 12px 38px 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.booking-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.wp_booking-submit {
    text-align: right;
}