/* PSIBEP Interview Booking — inherits One Sangha design tokens with fallbacks. */
.ib { --ib-maroon: var(--maroon, #6e1e2b); --ib-gold: var(--gold, #b9915a); --ib-cream: var(--cream-soft, #faf6ec); }

.ib__intro { color: var(--ink-soft, #6d5c52); margin-bottom: 24px; }
.ib__empty { padding: 24px; background: var(--ib-cream); border-left: 3px solid var(--ib-gold); }

.ib__day { margin-bottom: 26px; }
.ib__date {
	font-weight: 700;
	font-size: 19px;
	color: var(--ib-maroon);
	margin-bottom: 12px;
}
.ib__slots { display: flex; flex-wrap: wrap; gap: 10px; }
.ib__slot {
	min-width: 86px;
	padding: 10px 14px;
	background: var(--ib-cream);
	border: 1px solid rgba(110, 30, 43, 0.25);
	color: var(--ib-maroon);
	font-size: 15px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.ib__slot:hover:not(:disabled) { background: var(--gold-soft, #d9c39a); }
.ib__slot.is-selected { background: var(--ib-maroon); color: #fff; border-color: var(--ib-maroon); }
.ib__slot:disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.ib__form {
	margin-top: 28px;
	padding: 26px 24px;
	background: var(--ib-cream);
	border-top: 3px solid var(--ib-maroon);
	max-width: 560px;
}
.ib__form-title { color: var(--ib-maroon); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.ib__chosen { margin-bottom: 16px; color: var(--ink-soft, #6d5c52); }
.ib__field { margin-bottom: 14px; }
.ib__field input[type="text"],
.ib__field input[type="tel"],
.ib__field input[type="email"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(110, 30, 43, 0.3);
	background: #fff;
	font: inherit;
}
.ib__hp { position: absolute !important; left: -9999px !important; }
.ib__consent { font-size: 14px; color: var(--ink-soft, #6d5c52); margin-bottom: 16px; }
.ib__submit {
	background: var(--ib-maroon);
	color: #fff;
	border: 0;
	padding: 13px 28px;
	font: inherit;
	letter-spacing: 0.05em;
	cursor: pointer;
}
.ib__submit:hover { background: var(--maroon-deep, #571722); }
.ib__submit:disabled { opacity: 0.6; cursor: wait; }

.ib__result { margin-top: 20px; padding: 18px 20px; max-width: 560px; }
.ib__result.is-ok { background: #eef4ea; border-left: 3px solid var(--forest, #3e5c46); }
.ib__result.is-error { background: #f9ecec; border-left: 3px solid var(--ib-maroon); }
