.vsp-public-standplan {
	--vsp-green: #16352a;
	--vsp-orange: #e1522e;
	--vsp-cream: #fbf3e9;
	--vsp-text: #16352a;

	background: var(--vsp-cream);
	padding: 24px;
	border-radius: 8px;
	font-family: inherit;
	color: var(--vsp-text);
	max-width: 900px;
	margin: 0 auto;
}

.vsp-public-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
	justify-content: center;
}

.vsp-public-tab {
	padding: 8px 14px;
	background: #fff;
	border: 1px solid var(--vsp-green);
	border-radius: 20px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	color: var(--vsp-green);
	transition: background 0.15s, color 0.15s;
}

.vsp-public-tab:hover {
	background: var(--vsp-green);
	color: #fff;
}

.vsp-public-tab-active {
	background: var(--vsp-orange);
	border-color: var(--vsp-orange);
	color: #fff;
}

.vsp-public-room {
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 0 auto 20px;
	padding: 16px;
	background: #fff;
	border-radius: 8px;
	width: fit-content;
}

.vsp-public-main-column {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.vsp-public-side-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.vsp-public-mid-wrapper {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-left: 80px;
	margin-top: 70px;
	margin-bottom: 70px;
}

.vsp-public-eingang,
.vsp-public-ausgang {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--vsp-green);
	opacity: 0.6;
}

.vsp-public-row {
	display: flex;
	gap: 4px;
}

.vsp-public-row-vertical {
	flex-direction: column;
}

.vsp-public-slot {
	width: 40px;
	height: 40px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	border: none;
	padding: 0;
	font-family: inherit;
	text-decoration: none;
}

.vsp-public-slot.vsp-public-free {
	background: #eee6da;
	border: 1px dashed #c9bca6;
	color: var(--vsp-green);
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.15s;
}

.vsp-public-slot.vsp-public-free:hover {
	background: #e3d5bd;
}

.vsp-public-slot.vsp-public-booked {
	background: var(--vsp-cream);
	border: 2px solid var(--vsp-orange);
	cursor: pointer;
}

.vsp-public-slot.vsp-public-reserved {
	background: #ddd;
	color: #999;
	border: none;
}

.vsp-public-popover {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 2px solid var(--vsp-orange);
	border-radius: 8px;
	padding: 14px 40px 14px 16px;
	max-width: 320px;
	width: calc(100% - 40px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	font-size: 14px;
}

.vsp-public-popover-close {
	position: absolute;
	top: 6px;
	right: 10px;
	background: none;
	border: none;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: var(--vsp-green);
}

.vsp-public-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	justify-content: center;
	font-size: 13px;
}

.vsp-public-legend-item {
	white-space: nowrap;
}

.vsp-public-swatch-free {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 3px;
	background: #eee6da;
	border: 1px dashed #c9bca6;
	vertical-align: middle;
	margin-right: 3px;
}

@media (max-width: 600px) {
	.vsp-public-room {
		transform: scale(0.85);
		transform-origin: top left;
	}
}

.vsp-public-slot.vsp-public-soldout {
	background: #ddd;
	color: #999;
}

.vsp-public-booking-form {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 2px solid var(--vsp-orange);
	border-radius: 8px;
	padding: 18px 40px 18px 20px;
	max-width: 380px;
	width: calc(100% - 40px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	z-index: 1000;
	font-size: 14px;
	max-height: 80vh;
	overflow-y: auto;
}

.vsp-public-booking-form h3 {
	margin: 0 0 4px;
	color: var(--vsp-green);
}

.vsp-public-booking-form #vsp-booking-form-price {
	margin: 0 0 12px;
	font-weight: 700;
	color: var(--vsp-orange);
}

.vsp-public-booking-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}

.vsp-public-booking-form textarea,
.vsp-public-booking-form select {
	width: 100%;
	padding: 6px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: inherit;
}

.vsp-public-booking-form textarea {
	min-height: 60px;
}

.vsp-booking-agb label {
	font-weight: 400;
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

.vsp-booking-agb input {
	margin-top: 3px;
}

.vsp-booking-error {
	color: #b32d2e;
	font-weight: 600;
}

.vsp-booking-submit {
	background: var(--vsp-orange);
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
}

.vsp-booking-submit:disabled {
	opacity: 0.6;
	cursor: default;
}

.vsp-public-slot.vsp-public-selected {
	background: var(--vsp-orange) !important;
	color: #fff;
	border-color: var(--vsp-orange) !important;
}

.vsp-public-selection-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--vsp-green);
	color: #fff;
	padding: 12px 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	z-index: 999;
	font-size: 13px;
}

.vsp-public-selection-bar .vsp-booking-submit {
	width: auto;
	padding: 8px 18px;
}

.vsp-selection-clear {
	background: none;
	border: 1px solid #fff;
	color: #fff;
	border-radius: 20px;
	padding: 6px 14px;
	cursor: pointer;
	font-size: 13px;
}

.vsp-nachtwache-label {
	font-weight: 600;
	margin: 4px 0;
	font-size: 13px;
}

.vsp-nachtwache-option {
	display: block !important;
	font-weight: 400 !important;
	margin-bottom: 6px;
}
