.ar-booking-widget {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	font-family: inherit;
	box-sizing: border-box;
}

.ar-booking-widget * {
	box-sizing: border-box;
}

.ar-view-toggle {
	margin-bottom: 16px;
}

.ar-toggle-btn {
	padding: 8px 16px;
	margin-right: 8px;
	border: 1px solid #ccc;
	background: #fff;
	cursor: pointer;
	border-radius: 4px;
}

.ar-toggle-btn.active {
	background: #b8860b;
	color: #fff;
	border-color: #b8860b;
}

.ar-slot-card {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 12px 16px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

.ar-slot-card.selected {
	border-color: #b8860b;
	box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.2);
}

.ar-slot-date {
	font-weight: 600;
}

.ar-slot-time {
	margin-left: 6px;
	color: #555;
}

.ar-slot-capacity {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9em;
}

.ar-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.ar-select-slot-btn {
	background: #b8860b;
	color: #fff;
	border: none;
	padding: 6px 14px;
	border-radius: 4px;
	cursor: pointer;
}

.ar-select-slot-btn:hover {
	background: #96690a;
}

.ar-calendar-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

/* Op desktop is de kalender beperkt tot de helft van de widget-breedte.
   Op mobiel (onder 600px) vult hij de volledige breedte. */
@media (min-width: 600px) {
	.ar-view-calendar {
		max-width: 50%;
	}
}

.ar-calendar-nav button {
	background: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 4px 10px;
	cursor: pointer;
}

.ar-calendar-nav span {
	font-weight: 600;
	text-transform: capitalize;
}

.ar-cal-weekdays,
.ar-cal-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	text-align: center;
}

.ar-cal-weekday {
	font-weight: 600;
	font-size: 0.8em;
	color: #777;
	padding: 4px 0;
}

.ar-cal-day {
	position: relative;
	padding: 10px 4px;
	border-radius: 4px;
	cursor: default;
	min-height: 36px;
}

.ar-cal-day.has-slots {
	background: #f7f0e0;
	cursor: pointer;
}

.ar-cal-day.has-slots:hover {
	background: #efe2c2;
}

.ar-cal-day.selected-day {
	outline: 2px solid #b8860b;
}

.ar-cal-day-dot {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin: 2px auto 0;
}

.ar-calendar-day-slots {
	margin-top: 16px;
}

.ar-qty-table {
	width: 100%;
	margin: 16px 0;
}

.ar-qty-table td {
	padding: 6px 4px;
}

.ar-qty-table input[type="number"] {
	width: 70px;
}

.ar-total-price {
	font-size: 1.1em;
}

.ar-submit-btn {
	background: #2e7d32;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1em;
}

.ar-submit-btn:hover {
	background: #1f5e23;
}

.ar-form-message {
	color: #c0392b;
	font-weight: 600;
}

.ar-form-message.ar-msg-error {
	color: #c0392b;
}

.ar-form-message.ar-msg-success {
	color: #2e7d32;
}

.ar-form-message a {
	color: inherit;
	text-decoration: underline;
}

.ar-submit-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.ar-slot-extra {
	display: none;
}

.ar-show-more-btn {
	display: block;
	width: 100%;
	margin-top: 4px;
	background: #fff;
	border: 1px dashed #b8860b;
	color: #b8860b;
	padding: 10px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
}

.ar-show-more-btn:hover {
	background: #fdf6e8;
}

.ar-no-slots {
	font-style: italic;
	color: #777;
}
