/* StudioSlot form — mobile-first, inherits the theme's fonts. */
.studioslot-booking {
	max-width: 480px;
	margin: 0 auto;
}
.studioslot-booking .studioslot-step {
	margin-bottom: 1.25em;
}
.studioslot-booking .studioslot-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.4em;
}
.studioslot-booking select,
.studioslot-booking input[type="date"],
.studioslot-booking input[type="text"],
.studioslot-booking input[type="email"],
.studioslot-booking input[type="tel"],
.studioslot-booking textarea {
	width: 100%;
	padding: 0.6em 0.75em;
	margin-bottom: 0.5em;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 16px; /* prevents iOS zoom-on-focus */
	box-sizing: border-box;
	background: #fff;
}
.studioslot-booking .studioslot-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 0.5em;
}
.studioslot-booking .studioslot-slot {
	padding: 0.5em 0.9em;
	border: 1px solid #ccc;
	border-radius: 20px;
	background: #fff;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.2;
}
.studioslot-booking .studioslot-slot:hover {
	border-color: #d63384;
}
.studioslot-booking .studioslot-slot-selected {
	background: #d63384;
	border-color: #d63384;
	color: #fff;
}
.studioslot-booking .studioslot-submit {
	width: 100%;
	padding: 0.8em;
	border: 0;
	border-radius: 8px;
	background: #d63384;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
}
.studioslot-booking .studioslot-submit:hover {
	background: #b52a6f;
}
.studioslot-booking .studioslot-submit:disabled {
	opacity: 0.6;
	cursor: wait;
}
.studioslot-booking .studioslot-message {
	padding: 0.75em 1em;
	border-radius: 8px;
	margin-top: 1em;
}
.studioslot-booking .studioslot-message-success {
	background: #d4edda;
	color: #155724;
}
.studioslot-booking .studioslot-message-error {
	background: #f8d7da;
	color: #721c24;
}
.studioslot-booking .studioslot-hidden {
	display: none;
}
.studioslot-booking .studioslot-noslots,
.studioslot-booking .studioslot-loading {
	font-style: italic;
	opacity: 0.8;
}
