/*
 * Doctor Booking form — minimal layout only.
 * Deliberately does NOT set colors, borders, shadows, or button styling —
 * those are left to your theme so the form matches the rest of the site
 * instead of fighting it. Only structural layout (spacing, two-column rows,
 * mobile stacking) lives here.
 */

.dbw-form {
	max-width: 600px;
	margin: 0 auto;
}

.dbw-row {
	display: flex;
	gap: 16px;
}

.dbw-row .dbw-field {
	flex: 1;
	min-width: 0;
}

.dbw-field {
	margin-bottom: 18px;
}

.dbw-field label {
	display: block;
	margin-bottom: 6px;
}

.dbw-field input,
.dbw-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
}

.dbw-slots-left {
	margin: 6px 0 0;
	font-size: 13px;
}

.dbw-slots-left.dbw-slots-low {
	font-weight: 600;
}

.dbw-slots-left.dbw-slots-full {
	font-weight: 600;
}

.dbw-submit-btn {
	width: 100%;
	padding: 12px 20px;
}

.dbw-note {
	margin: 10px 0 0 !important;
	font-size: 20px !important;
	text-align: center;
}

.dbw-error {
	padding: 10px 14px;
	margin-bottom: 16px;
}

@media (max-width: 480px) {
	.dbw-row {
		flex-direction: column;
		gap: 0;
	}
}
