.abp-booking-widget { max-width: 720px; margin: 0 auto; }
.abp-step { margin-bottom: 16px; }
.abp-step label { display: block; margin-bottom: 6px; font-weight: 600; }

.abp-date-nav { display: flex; align-items: center; gap: 8px; }
.abp-date-nav input[type=date] { padding: 8px; font-size: 15px; border: 1px solid #ccc; border-radius: 6px; flex: 1 1 auto; }
.abp-nav-btn { width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid #ccc; background: #fff; border-radius: 6px; font-size: 18px; line-height: 1; cursor: pointer; color: #2271b1; }
.abp-nav-btn:hover { background: #f0f6fb; }

.abp-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.abp-slot {
	padding: 10px 8px;
	border-radius: 6px;
	border: 1px solid #2271b1;
	background: #fff;
	color: #2271b1;
	cursor: pointer;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: opacity .15s ease, background .15s ease;
}
.abp-slot-available:hover { background: #2271b1; color: #fff; }
.abp-slot-full {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.abp-message, #abp-form-message { margin-top: 10px; }
.abp-success { color: #1a7f37; font-weight: 600; }
.abp-error { color: #c0392b; font-weight: 600; }

.abp-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; z-index: 99999; }
.abp-modal { background: #fff; padding: 24px; border-radius: 10px; max-width: 420px; width: 90%; position: relative; max-height: 85vh; overflow-y: auto; box-shadow: 0 10px 40px rgba(0,0,0,.2); }
.abp-modal-close { position: absolute; top: 8px; right: 12px; background: none; border: none; font-size: 24px; line-height: 1; cursor: pointer; color: #555; }
.abp-field { margin-bottom: 12px; }
.abp-field label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 13px; }
.abp-field input, .abp-field textarea, .abp-field select { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-size: 14px; }
.abp-submit-btn { background: #2271b1; color: #fff; border: none; padding: 10px 18px; border-radius: 6px; cursor: pointer; font-size: 14px; margin-top: 6px; }
.abp-submit-btn:hover { background: #135e96; }
.abp-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.abp-bookings-list table { width: 100%; border-collapse: collapse; }
.abp-bookings-list th, .abp-bookings-list td { border: 1px solid #ddd; padding: 8px; text-align: left; font-size: 13px; vertical-align: top; }
.abp-bookings-list th { background: #f5f5f5; }
.abp-status-confirmed { color: #1a7f37; font-weight: 600; }
.abp-status-done { color: #2271b1; font-weight: 600; }
.abp-status-cancelled { color: #c0392b; font-weight: 600; }
.abp-booked-on { display: block; margin-top: 3px; font-size: 11px; color: #777; font-weight: 400; }

.abp-tabs { display: flex; gap: 4px; border-bottom: 1px solid #ddd; margin-bottom: 16px; }
.abp-tab-btn {
	padding: 10px 16px;
	border: none;
	background: none !important;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #555 !important;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
	outline: none;
	box-shadow: none !important;
}
.abp-tab-btn:hover,
.abp-tab-btn:focus {
	background: #2271b1 !important;
	color: #fff !important;
	border-radius: 4px 4px 0 0;
	outline: none;
}
.abp-tab-btn.active,
.abp-tab-btn.active:focus {
	color: #2271b1 !important;
	background: none !important;
	border-bottom-color: #2271b1;
}
.abp-tab-btn.active:hover {
	color: #fff !important;
	background: #2271b1 !important;
}
