.scb-widget {
	max-width: 560px;
	margin: 20px 0;
	padding: 18px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #fafafa;
	box-sizing: border-box;
}
.scb-widget * { box-sizing: border-box; }
.scb-legend {
	display: flex;
	gap: 18px;
	font-size: 13px;
	margin-bottom: 8px;
	color: #444;
	flex-wrap: wrap;
}
.scb-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-right: 5px;
}
.scb-dot.scb-free { background: #6FAE8C; }
.scb-dot.scb-booked { background: #D46A4C; }
.scb-dot.scb-selected { background: #3B6FE8; }

/* Kalender */
.scb-cal {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 14px;
	background: #fff;
}
.scb-cal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.scb-cal-label { font-size: 14px; font-weight: 700; color: #2A1B04; }
.scb-cal-nav {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	color: #444;
}
.scb-cal-nav:hover { background: #f5f5f5; }
.scb-cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	font-size: 11.5px;
	color: #888;
	text-align: center;
	margin-bottom: 4px;
}
.scb-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
}
.scb-day {
	position: relative;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12.5px;
	border-radius: 6px;
	cursor: pointer;
	background: #eaf4ee;
	border: 1px solid #cfe6d8;
	color: #2A1B04;
}
.scb-day-empty { visibility: hidden; cursor: default; }
.scb-day-past {
	background: #f5f5f5;
	border-color: #eee;
	color: #ccc;
	cursor: default;
}
.scb-day-free:hover { background: #d7ecdf; }
.scb-day-booked {
	background: #f2c9be;
	border-color: #D46A4C;
	color: #7a2d1a;
	cursor: default;
}
.scb-day-disabled { cursor: default; }
.scb-day-half {
	background: linear-gradient(135deg, #eaf4ee 0%, #eaf4ee 49%, #f2c9be 51%, #f2c9be 100%);
	border-color: #e0c7a8;
}
.scb-day-half-departure {
	background: linear-gradient(135deg, #f2c9be 0%, #f2c9be 49%, #eaf4ee 51%, #eaf4ee 100%);
}
.scb-day-selected {
	background: #3B6FE8 !important;
	border-color: #2952c4 !important;
	color: #fff !important;
	font-weight: 700;
}
.scb-day-in-range {
	background: #cddcfa;
	border-color: #a9c1f2;
}

.scb-selection {
	font-size: 13px;
	margin-bottom: 12px;
	padding: 8px 10px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	color: #444;
}

.scb-cal-label.scb-empty,
.scb-empty { font-size: 13px; color: #6FAE8C; margin: 0 0 16px; }
.scb-booked-list { list-style: none; padding: 0; margin: 0 0 16px; font-size: 13px; }
.scb-booked-list li { padding: 5px 0; border-bottom: 1px dashed #ddd; }

.scb-form label { display: block; font-size: 12.5px; margin-bottom: 4px; font-weight: 600; color: #333; }
.scb-form input, .scb-form textarea {
	width: 100%;
	padding: 9px 10px;
	margin-bottom: 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 14px;
}
.scb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.scb-msg { font-size: 13px; margin: 8px 0; min-height: 18px; color: #444; }
.scb-btn {
	background: #E8A33D;
	color: #2A1B04;
	border: none;
	padding: 11px 20px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
}
.scb-btn:hover:not(:disabled) { filter: brightness(1.05); }
.scb-btn:disabled { background: #ddd; color: #999; cursor: not-allowed; }
@media (max-width: 480px) {
	.scb-row { grid-template-columns: 1fr; }
}
