/* Easy Booking Appointments - Frontend styles (simple, override freely) */

.eba-form-wrap {
	max-width: 600px;
	margin: 0 auto;
	padding: 24px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
}

.eba-steps-indicator {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
}

.eba-step-dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #eee;
	color: #555;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: bold;
}

.eba-step-dot.active {
	background: #2271b1;
	color: #fff;
}

.eba-step {
	display: none;
}

.eba-step.active {
	display: block;
}

.eba-field {
	margin-bottom: 16px;
}

.eba-field label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
}

.eba-required {
	color: #d63638;
}

.eba-field input[type="text"],
.eba-field input[type="email"],
.eba-field input[type="tel"],
.eba-field input[type="number"],
.eba-field input[type="date"],
.eba-field input[type="time"],
.eba-field select,
.eba-field textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 14px;
}

.eba-field textarea {
	min-height: 100px;
}

.eba-choice-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.eba-choice-label {
	font-weight: normal !important;
	display: flex !important;
	align-items: center;
	gap: 6px;
}

.eba-step-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.eba-btn {
	padding: 10px 22px;
	border: none;
	border-radius: 4px;
	background: #2271b1;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
}

.eba-btn-back {
	background: #767676;
}

.eba-btn-next {
	margin-left: auto;
}

.eba-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.eba-step-success {
	text-align: center;
	padding: 20px 0;
}

.eba-success-icon {
	font-size: 48px;
}

.eba-form-error {
	color: #d63638;
	margin-top: 12px;
	display: none;
}

.eba-form-error.active {
	display: block;
}

/* Honeypot anti-spam field: hidden from real visitors, left visible to bots. */
.eba-hp-field {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	height: 0;
	overflow: hidden;
	margin: 0;
}

.eba-field-hint {
	color: #d63638;
	font-size: 12px;
	margin: 4px 0 0;
}

.eba-field-consent label {
	font-weight: normal;
}
