.dbl-bcs-widget {
	max-width: 980px;
	width: 100%;
	margin: 32px auto;
	padding: 36px 40px;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 20px;
	background: linear-gradient(145deg, #111419, #181c22);
	box-shadow: 0 20px 48px rgba(0, 0, 0, .32);
	color: #fff;
}

.dbl-bcs-widget * {
	box-sizing: border-box;
}

.dbl-bcs-widget-header {
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.dbl-bcs-widget-header h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 28px;
}

.dbl-bcs-widget-header p {
	margin: 0;
	color: #b9b9b9;
	font-size: 15px;
}

.dbl-bcs-widget h3 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 17px;
}

/* Two-column layout on wider screens: date picker as a sidebar, times filling
   the rest of the width — this is what makes the widget use the full page
   width on its own dedicated booking page instead of sitting in a narrow box. */
.dbl-bcs-body {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.dbl-bcs-step-date {
	flex: 0 0 260px;
}

.dbl-bcs-step-times {
	flex: 1 1 480px;
	min-width: 280px;
}

.dbl-bcs-date-wrap {
	position: relative;
}

.dbl-bcs-date-input {
	width: 100%;
	padding: 12px 44px 12px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .22);
	background: #0d0f13;
	color: #fff;
	font-size: 15px;
	color-scheme: dark;
}

/* The browser's own calendar icon renders in an inconsistent, often very
   dark tone that can disappear against this theme depending on the browser
   — rather than fight that, we hide it (still clickable, just invisible)
   and draw our own icon on top in a guaranteed-visible color. */
.dbl-bcs-date-input::-webkit-calendar-picker-indicator {
	opacity: 0;
	position: absolute;
	right: 0;
	width: 44px;
	height: 100%;
	cursor: pointer;
}

.dbl-bcs-date-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	pointer-events: none;
	display: flex;
}

.dbl-bcs-times-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.dbl-bcs-time-btn {
	padding: 12px 18px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: #1c2129;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.dbl-bcs-time-btn:hover {
	background: #b8891d;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(184, 137, 29, .28);
}

.dbl-bcs-time-btn.selected {
	background: #b8891d;
	border-color: #b8891d;
}

.dbl-bcs-step-info {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.dbl-bcs-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(200px, 1fr));
	gap: 14px;
	margin-bottom: 20px;
}

.dbl-bcs-input {
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .22);
	background: #0d0f13;
	color: #fff;
	font-size: 15px;
}

.dbl-bcs-input::placeholder {
	color: #8b8b8b;
}

.dbl-bcs-input:focus {
	outline: none;
	border-color: #b8891d;
}

.dbl-bcs-submit-btn {
	padding: 13px 28px;
	border-radius: 10px;
	border: none;
	background: #b8891d;
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.dbl-bcs-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(184, 137, 29, .32);
}

.dbl-bcs-submit-btn:disabled {
	opacity: .6;
	cursor: default;
	transform: none;
	box-shadow: none;
}

.dbl-bcs-confirmation {
	margin-top: 26px;
	padding: 16px 20px;
	border-radius: 12px;
	background: rgba(215, 25, 18, .12);
	border: 1px solid rgba(215, 25, 18, .35);
	font-size: 15px;
}

.dbl-bcs-empty-note {
	color: #9a9a9a;
	margin: 0;
}

/* Stack to a single column on narrower screens/embedded contexts. */
@media (max-width: 640px) {
	.dbl-bcs-widget {
		padding: 24px;
	}
	.dbl-bcs-step-date {
		flex-basis: 100%;
	}
	.dbl-bcs-info-grid {
		grid-template-columns: 1fr;
	}
}
