.sbp-booking-wizard {
	max-width: 640px;
	margin: 0 auto;
}

.sbp-step-indicator {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-bottom: 1.5em;
	font-size: 0.85em;
}

.sbp-step {
	padding: 0.25em 0.75em;
	border-radius: 999px;
	background: #eee;
	color: #666;
}

.sbp-step.is-active {
	background: #222;
	color: #fff;
}

.sbp-step.is-done {
	background: #ddd;
	color: #333;
}

.sbp-option-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}

.sbp-option {
	padding: 0.6em 1em;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
}

.sbp-option:hover:not([disabled]) {
	border-color: #222;
}

.sbp-option[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.sbp-back {
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	margin-bottom: 1em;
	padding: 0;
	text-decoration: underline;
}

.sbp-summary {
	list-style: none;
	margin: 0 0 1em;
	padding: 0;
}

.sbp-summary li {
	padding: 0.4em 0;
	border-bottom: 1px solid #eee;
}

.sbp-addon-list {
	list-style: none;
	margin: 0 0 1em;
	padding: 0;
}

.sbp-addon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding: 0.5em 0;
	border-bottom: 1px solid #eee;
}

.sbp-addon input[type="number"] {
	width: 4em;
}

.sbp-error {
	color: #c0392b;
}

.sbp-account {
	max-width: 640px;
	margin: 0 auto;
}

.sbp-account-tabs {
	display: flex;
	gap: 0.5em;
	margin-bottom: 1em;
}

.sbp-tab {
	padding: 0.5em 1em;
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 6px;
	cursor: pointer;
}

.sbp-tab.is-active {
	background: #222;
	color: #fff;
	border-color: #222;
}

.sbp-account-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5em;
}

.sbp-logout {
	background: none;
	border: none;
	color: #666;
	text-decoration: underline;
	cursor: pointer;
}

.sbp-bookings-table {
	width: 100%;
	border-collapse: collapse;
}

.sbp-bookings-table th,
.sbp-bookings-table td {
	text-align: left;
	padding: 0.5em;
	border-bottom: 1px solid #eee;
}

.sbp-cancel {
	background: none;
	border: 1px solid #c0392b;
	color: #c0392b;
	border-radius: 4px;
	padding: 0.3em 0.7em;
	cursor: pointer;
}

.sbp-plan-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 220px, 1fr ) );
	gap: 1em;
}

.sbp-plan-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1.25em;
}

.sbp-plan-price {
	font-size: 1.3em;
	font-weight: bold;
}

.sbp-plan-note {
	color: #666;
	font-size: 0.9em;
}

.sbp-notice {
	background: #f3f7f3;
	border: 1px solid #b7d6b7;
	padding: 0.75em 1em;
	border-radius: 6px;
}

.sbp-current-membership {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1.25em;
}
