/* Container */
.booking-bar-wrapper-e39c197a {
	width: 100%;
}

.booking-bar-container-e39c197a {
	background-color: #1A1A1A;
	border-radius: 20px;
	padding: 20px 30px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	color: #ffffff;
	font-family: sans-serif;
	gap: 20px;
}

/* Items */
.booking-item-e39c197a {
	flex: 1;
	display: flex;
	flex-direction: column;
	border-right: 1px solid #333333;
	padding-right: 20px;
}

.booking-item-e39c197a:last-child {
	border-right: none;
	padding-right: 0;
	flex: 0 0 auto;
}

.item-heading-e39c197a {
	flex: 1.2;
}

.booking-heading-e39c197a {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
	color: inherit;
}

/* Typography */
.booking-item-e39c197a label {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	color: inherit;
}

/* Inputs */
.booking-item-e39c197a input {
	background: transparent;
	border: none;
	color: inherit;
	font-size: 14px;
	padding: 0;
	outline: none;
	width: 100%;
}

.booking-item-e39c197a input::placeholder {
	color: #888888;
}

/* Date Pickers */
.date-input-wrapper-e39c197a {
	position: relative;
	display: flex;
	align-items: center;
}

.date-input-wrapper-e39c197a input[type="date"] {
	color: #888888;
}

.date-input-wrapper-e39c197a input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(1);
	cursor: pointer;
	background-color: #ff3b3b;
	border-radius: 4px;
	padding: 2px;
}

/* Mobile Wrapper & Dropdown */
.mobile-input-wrapper-e39c197a {
	display: flex;
	align-items: center;
	gap: 8px;
}

.country-dropdown-e39c197a {
	position: relative;
	cursor: pointer;
}

.country-selected-e39c197a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
}

.country-selected-e39c197a .chevron {
	margin-left: 2px;
}

.country-list-e39c197a {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #222222;
	border: 1px solid #333333;
	border-radius: 8px;
	padding: 8px 0;
	margin-top: 10px;
	min-width: 220px;
	z-index: 10;
	display: none;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.2s ease-in-out;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	max-height: 200px;
	overflow-y: auto;
}

.country-list-e39c197a.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.country-list-e39c197a::-webkit-scrollbar {
	width: 6px;
}
.country-list-e39c197a::-webkit-scrollbar-thumb {
	background: #444;
	border-radius: 3px;
}

.country-option-e39c197a {
	padding: 8px 16px;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background 0.2s;
}

.country-option-e39c197a:hover {
	background-color: #333333;
}

/* Submit Button */
.booking-submit-btn-e39c197a {
	background-color: #ffffff;
	color: #000000;
	border: none;
	border-radius: 50px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 120px;
}

.booking-submit-btn-e39c197a:hover {
	background-color: #f0f0f0;
	transform: scale(1.02);
}

.booking-message-e39c197a {
	margin-top: 10px;
	font-size: 14px;
	text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
	.booking-bar-container-e39c197a {
		flex-direction: column;
		gap: 20px;
		padding: 30px;
	}
	.booking-item-e39c197a {
		border-right: none;
		border-bottom: 1px solid #333333;
		padding-right: 0;
		padding-bottom: 20px;
		width: 100%;
	}
	.booking-item-e39c197a:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
	.booking-submit-btn-e39c197a {
		width: 100%;
	}
}
