/* Default styling for the scheduler button. Kept light so it inherits the
   theme where possible; only the floating variant is fully opinionated. */

.hoops-scheduler-button {
	display: inline-block;
	padding: 0.65em 1.4em;
	font: inherit;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	background: #0ea5e9;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.hoops-scheduler-button:hover,
.hoops-scheduler-button:focus {
	filter: brightness(0.93);
	color: #fff;
}

.hoops-scheduler-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Floating, fixed-position variant. */
.hoops-scheduler-floating {
	position: fixed;
	bottom: 20px;
	z-index: 2147483646; /* one below the embed.js overlay */
	padding: 0.8em 1.5em;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hoops-scheduler-floating.hoops-pos-bottom-right {
	right: 20px;
}

.hoops-scheduler-floating.hoops-pos-bottom-left {
	left: 20px;
}
