/* =====================================================================
   Exterior Cleaning Booking & Quoting — Stylesheet
   Covers: frontend booking wizard + WordPress admin dashboard
   ===================================================================== */

:root {
	--ecb-primary: #063b80;
	--ecb-primary-dark: #053069;
	--ecb-primary-light: #e1e7f0;
	--ecb-accent: #ff7a45;
	--ecb-bg: #f6f8f9;
	--ecb-surface: #ffffff;
	--ecb-border: #e3e8ea;
	--ecb-text: #14232b;
	--ecb-text-muted: #64777f;
	--ecb-success: #1a9c5f;
	--ecb-warning: #d98c00;
	--ecb-error: #d63638;
	--ecb-radius: 14px;
	--ecb-radius-sm: 8px;
	--ecb-shadow: 0 2px 10px rgba(20, 35, 43, 0.06);
	--ecb-shadow-lg: 0 12px 32px rgba(20, 35, 43, 0.14);
	--ecb-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* =========================== FRONTEND =========================== */

.ecb-app {
	font-family: var(--ecb-font);
	color: var(--ecb-text);
	max-width: 880px;
	margin: 0 auto;
	box-sizing: border-box;
}
.ecb-app *, .ecb-app *::before, .ecb-app *::after { box-sizing: border-box; }

.ecb-loading-shell { text-align: center; padding: 60px 20px; color: var(--ecb-text-muted); }
.ecb-spinner {
	width: 36px; height: 36px; margin: 0 auto 14px;
	border: 3px solid var(--ecb-border); border-top-color: var(--ecb-primary);
	border-radius: 50%; animation: ecb-spin 0.8s linear infinite;
}
@keyframes ecb-spin { to { transform: rotate(360deg); } }

.ecb-wizard { background: var(--ecb-surface); border-radius: var(--ecb-radius); box-shadow: var(--ecb-shadow-lg); overflow: hidden; border: 1px solid var(--ecb-border); }

.ecb-wizard-header { padding: 24px 28px 0; }
.ecb-wizard-header h2 { margin: 0 0 4px; font-size: 22px; font-weight: 700; }
.ecb-wizard-header p { margin: 0 0 18px; color: var(--ecb-text-muted); font-size: 14px; }

.ecb-progress { display: flex; align-items: center; padding: 0 28px 22px; gap: 4px; overflow-x: auto; }
.ecb-progress-step {
	display: flex; align-items: center; gap: 8px; flex-shrink: 0; opacity: 0.4; transition: opacity .25s ease;
	font-size: 12.5px; font-weight: 600; color: var(--ecb-text-muted);
}
.ecb-progress-step.is-active, .ecb-progress-step.is-done { opacity: 1; }
.ecb-progress-dot {
	width: 26px; height: 26px; border-radius: 50%; background: var(--ecb-border); color: #fff;
	display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0;
	transition: background .25s ease, transform .25s ease;
}
.ecb-progress-step.is-active .ecb-progress-dot { background: var(--ecb-primary); transform: scale(1.1); }
.ecb-progress-step.is-done .ecb-progress-dot { background: var(--ecb-success); }
.ecb-progress-line { width: 20px; height: 2px; background: var(--ecb-border); flex-shrink: 0; }

.ecb-step-body { padding: 6px 28px 28px; animation: ecb-fade-in .3s ease; min-height: 220px; }
@keyframes ecb-fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.ecb-step-body h3 { margin: 0 0 4px; font-size: 18px; }
.ecb-step-sub { color: var(--ecb-text-muted); font-size: 13.5px; margin: 0 0 18px; }

/* Service cards */
.ecb-service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.ecb-service-card {
	position: relative; border: 2px solid var(--ecb-border); border-radius: var(--ecb-radius-sm);
	padding: 16px 14px; cursor: pointer; transition: all .18s ease; background: var(--ecb-surface);
	display: flex; flex-direction: column; gap: 8px;
}
.ecb-service-card:hover { border-color: var(--ecb-primary); box-shadow: var(--ecb-shadow); transform: translateY(-2px); }
.ecb-service-card.is-selected { border-color: var(--ecb-primary); background: var(--ecb-primary-light); }
.ecb-service-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--ecb-primary-light); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ecb-service-card.is-selected .ecb-service-icon { background: var(--ecb-primary); color: #fff; }
.ecb-service-name { font-weight: 700; font-size: 14.5px; }
.ecb-service-desc { font-size: 12.5px; color: var(--ecb-text-muted); line-height: 1.4; }
.ecb-service-price { font-size: 13px; font-weight: 700; color: var(--ecb-primary); margin-top: auto; }
.ecb-service-check {
	position: absolute; top: 10px; right: 10px; width: 20px; height: 20px; border-radius: 50%;
	border: 2px solid var(--ecb-border); background: #fff; display: flex; align-items: center; justify-content: center;
	font-size: 11px; color: #fff; transition: all .18s ease;
}
.ecb-service-card.is-selected .ecb-service-check { background: var(--ecb-primary); border-color: var(--ecb-primary); }

/* Options / sub-services */
.ecb-options-group { margin-bottom: 22px; }
.ecb-options-group h4 { font-size: 14px; margin: 0 0 10px; }
.ecb-option-list { display: flex; flex-wrap: wrap; gap: 8px; }
.ecb-option-chip {
	border: 1.5px solid var(--ecb-border); border-radius: 100px; padding: 8px 14px; font-size: 13px; cursor: pointer;
	transition: all .15s ease; background: #fff; user-select: none;
}
.ecb-option-chip:hover { border-color: var(--ecb-primary); }
.ecb-option-chip.is-selected { background: var(--ecb-primary); color: #fff; border-color: var(--ecb-primary); }

/* Forms */
.ecb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ecb-form-grid.ecb-cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.ecb-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.ecb-field.full { grid-column: 1 / -1; }
.ecb-field label { font-size: 12.5px; font-weight: 600; color: var(--ecb-text-muted); }
.ecb-field input, .ecb-field select, .ecb-field textarea {
	border: 1.5px solid var(--ecb-border); border-radius: var(--ecb-radius-sm); padding: 11px 13px; font-size: 14.5px;
	font-family: inherit; transition: border-color .15s ease; background: #fff; color: var(--ecb-text);
}
.ecb-field input:focus, .ecb-field select:focus, .ecb-field textarea:focus {
	outline: none; border-color: var(--ecb-primary); box-shadow: 0 0 0 3px var(--ecb-primary-light);
}
.ecb-field .ecb-field-error { color: var(--ecb-error); font-size: 12px; display: none; }
.ecb-field.has-error input, .ecb-field.has-error select, .ecb-field.has-error textarea { border-color: var(--ecb-error); }
.ecb-field.has-error .ecb-field-error { display: block; }

/* Upload */
.ecb-upload-zone {
	border: 2px dashed var(--ecb-border); border-radius: var(--ecb-radius-sm); padding: 28px; text-align: center;
	cursor: pointer; transition: all .2s ease; color: var(--ecb-text-muted); font-size: 14px;
}
.ecb-upload-zone:hover, .ecb-upload-zone.is-dragover { border-color: var(--ecb-primary); background: var(--ecb-primary-light); }
.ecb-upload-previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.ecb-upload-thumb { position: relative; width: 84px; height: 84px; border-radius: 10px; overflow: hidden; border: 1px solid var(--ecb-border); }
.ecb-upload-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ecb-upload-thumb .ecb-remove-photo {
	position: absolute; top: 3px; right: 3px; background: rgba(20,35,43,.7); color: #fff; border: none;
	width: 20px; height: 20px; border-radius: 50%; cursor: pointer; font-size: 11px; line-height: 1;
}
.ecb-upload-thumb.is-uploading::after {
	content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.6);
	border: 2px solid var(--ecb-primary); border-top-color: transparent; border-radius: 50%; animation: ecb-spin .8s linear infinite;
	margin: auto; width: 24px; height: 24px;
}

/* Calendar */
.ecb-calendar { border: 1px solid var(--ecb-border); border-radius: var(--ecb-radius-sm); padding: 16px; }
.ecb-calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ecb-calendar-header button { background: none; border: 1px solid var(--ecb-border); border-radius: 8px; width: 32px; height: 32px; cursor: pointer; }
.ecb-calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.ecb-calendar-dow { text-align: center; font-size: 11px; color: var(--ecb-text-muted); font-weight: 700; padding-bottom: 4px; }
.ecb-calendar-day {
	aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 13px;
	cursor: pointer; border: 1.5px solid transparent; color: var(--ecb-text);
}
.ecb-calendar-day.is-available { background: var(--ecb-primary-light); font-weight: 600; }
.ecb-calendar-day.is-available:hover { border-color: var(--ecb-primary); }
.ecb-calendar-day.is-selected { background: var(--ecb-primary); color: #fff; }
.ecb-calendar-day.is-disabled { color: #c7d0d3; cursor: default; }
.ecb-time-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.ecb-time-slot { border: 1.5px solid var(--ecb-border); border-radius: 100px; padding: 8px 16px; font-size: 13px; cursor: pointer; background: #fff; }
.ecb-time-slot:hover { border-color: var(--ecb-primary); }
.ecb-time-slot.is-selected { background: var(--ecb-primary); color: #fff; border-color: var(--ecb-primary); }

/* Review + price summary */
.ecb-summary-card { background: var(--ecb-bg); border-radius: var(--ecb-radius-sm); padding: 18px; }
.ecb-summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13.5px; }
.ecb-summary-row.total { font-size: 17px; font-weight: 800; border-top: 1.5px solid var(--ecb-border); margin-top: 6px; padding-top: 12px; }
.ecb-summary-row .muted { color: var(--ecb-text-muted); }
.ecb-summary-row .discount { color: var(--ecb-success); }

.ecb-live-price {
	position: sticky; bottom: 0; background: var(--ecb-surface); border-top: 1px solid var(--ecb-border);
	padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.ecb-live-price .ecb-price-total { font-size: 20px; font-weight: 800; color: var(--ecb-primary); }
.ecb-live-price .ecb-price-label { font-size: 11.5px; color: var(--ecb-text-muted); text-transform: uppercase; letter-spacing: .04em; }

/* Buttons */
.ecb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	border: none; border-radius: 100px; padding: 12px 24px; font-size: 14.5px; font-weight: 700;
	cursor: pointer; transition: all .15s ease; font-family: inherit;
}
.ecb-btn-primary { background: var(--ecb-primary); color: #fff; }
.ecb-btn-primary:hover { background: var(--ecb-primary-dark); transform: translateY(-1px); }
.ecb-btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.ecb-btn-secondary { background: transparent; color: var(--ecb-text-muted); border: 1.5px solid var(--ecb-border); }
.ecb-btn-secondary:hover { border-color: var(--ecb-text-muted); color: var(--ecb-text); }
.ecb-btn-accent { background: var(--ecb-accent); color: #fff; }

.ecb-wizard-nav { display: flex; justify-content: space-between; padding: 20px 28px; border-top: 1px solid var(--ecb-border); }

.ecb-coupon-row { display: flex; gap: 8px; margin-top: 10px; }
.ecb-coupon-row input { flex: 1; }

.ecb-alert { border-radius: var(--ecb-radius-sm); padding: 12px 16px; font-size: 13.5px; margin-bottom: 14px; }
.ecb-alert-error { background: #fdecea; color: var(--ecb-error); }
.ecb-alert-success { background: #e8f7ef; color: var(--ecb-success); }
.ecb-alert-info { background: var(--ecb-primary-light); color: var(--ecb-primary-dark); }

.ecb-success-screen { text-align: center; padding: 40px 28px; }
.ecb-success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--ecb-success); color: #fff; font-size: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.ecb-success-screen h2 { margin: 0 0 8px; }
.ecb-success-screen p { color: var(--ecb-text-muted); margin: 0 0 4px; }
.ecb-ref-badge { display: inline-block; margin-top: 14px; background: var(--ecb-bg); padding: 10px 18px; border-radius: 100px; font-weight: 700; letter-spacing: .03em; }

#ecb-stripe-payment-element { margin: 18px 0; }

/* Mode toggle (booking vs quote-only display) */
.ecb-mode-badge { display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 10px; border-radius: 100px; background: var(--ecb-accent); color: #fff; margin-bottom: 10px; }

/* ---- Global popup (quote button / book-now trigger) ---- */
body.ecb-modal-open { overflow: hidden; }
.ecb-frontend-modal { padding: 24px 14px; align-items: flex-start; }
.ecb-modal-inner-wizard { max-width: 900px; padding: 0; background: transparent; box-shadow: none; position: relative; }
.ecb-modal-inner-wizard .ecb-modal-close {
	position: absolute; top: -14px; right: -14px; z-index: 2; background: #fff; border-radius: 50%;
	width: 34px; height: 34px; box-shadow: var(--ecb-shadow-lg); font-size: 18px; color: var(--ecb-text);
}
.ecb-modal-inner-wizard .ecb-app { max-width: 100%; }

/* ---- Services showcase / grid shortcodes ---- */
.ecb-services-showcase, .ecb-services-grid-static { font-family: var(--ecb-font); color: var(--ecb-text); }
.ecb-services-grid-static .ecb-services-track {
	display: grid; grid-template-columns: repeat(var(--ecb-services-columns, 3), 1fr); gap: 22px;
}
.ecb-services-showcase .ecb-services-track {
	display: grid; grid-template-columns: repeat(var(--ecb-services-columns, 3), 1fr); gap: 22px;
}
.ecb-services-card {
	background: var(--ecb-surface); border: 1px solid var(--ecb-border); border-radius: var(--ecb-radius);
	overflow: hidden; box-shadow: var(--ecb-shadow); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
}
.ecb-services-card:hover { transform: translateY(-3px); box-shadow: var(--ecb-shadow-lg); }
.ecb-services-card-media { aspect-ratio: 16/10; background: var(--ecb-primary-light); overflow: hidden; }
.ecb-services-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ecb-services-card-media-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.ecb-services-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ecb-services-card-body h3 { margin: 0; font-size: 16px; }
.ecb-services-card-body p { margin: 0; font-size: 13px; color: var(--ecb-text-muted); line-height: 1.5; flex: 1; }
.ecb-services-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.ecb-services-price { font-size: 13px; font-weight: 700; color: var(--ecb-primary); }
.ecb-services-card-footer .ecb-btn { padding: 9px 16px; font-size: 13px; }

@media (max-width: 900px) {
	.ecb-services-grid-static .ecb-services-track,
	.ecb-services-showcase .ecb-services-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
	/* Grid shortcode: always stays a plain, stacked, scrollable grid on mobile. */
	.ecb-services-grid-static .ecb-services-track { grid-template-columns: 1fr; }

	/* Showcase shortcode: switches to a smooth auto-scrolling horizontal filmstrip on mobile. */
	.ecb-services-showcase .ecb-services-track {
		display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch; padding-bottom: 6px; gap: 16px;
		scrollbar-width: none;
	}
	.ecb-services-showcase .ecb-services-track::-webkit-scrollbar { display: none; }
	.ecb-services-showcase .ecb-services-card { flex: 0 0 82%; scroll-snap-align: center; }
}

@media (max-width: 640px) {
	.ecb-form-grid, .ecb-form-grid.ecb-cols-3 { grid-template-columns: 1fr; }
	.ecb-wizard-header, .ecb-step-body, .ecb-wizard-nav, .ecb-live-price { padding-left: 16px; padding-right: 16px; }
	.ecb-progress-step span.ecb-progress-label { display: none; }
}

/* =========================== ADMIN =========================== */

.ecb-admin-wrap { font-family: var(--ecb-font); color: var(--ecb-text); max-width: 1400px; }
.ecb-admin-wrap .ecb-header h1 { font-size: 23px; margin: 16px 0 12px; }

.ecb-tabs { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 1px solid var(--ecb-border); margin-bottom: 22px; }
.ecb-tab {
	display: flex; align-items: center; gap: 6px; padding: 10px 14px; text-decoration: none; font-size: 13.5px;
	font-weight: 600; color: var(--ecb-text-muted); border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.ecb-tab:hover { color: var(--ecb-primary); }
.ecb-tab.ecb-tab-active { color: var(--ecb-primary); border-bottom-color: var(--ecb-primary); }
.ecb-tab .dashicons { font-size: 16px; width: 16px; height: 16px; }

.ecb-admin-content { padding-bottom: 40px; }

.ecb-card { background: var(--ecb-surface); border: 1px solid var(--ecb-border); border-radius: var(--ecb-radius); padding: 20px 22px; box-shadow: var(--ecb-shadow); }
.ecb-card h2 { margin-top: 0; font-size: 16px; }
.ecb-card h3 { font-size: 14px; }

.ecb-grid { display: grid; gap: 20px; }
.ecb-grid-2 { grid-template-columns: 1fr 1fr; }
.ecb-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .ecb-grid-2, .ecb-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .ecb-grid-2, .ecb-grid-4 { grid-template-columns: 1fr; } }

.ecb-stat { display: flex; flex-direction: column; gap: 6px; }
.ecb-stat-label { font-size: 12px; color: var(--ecb-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.ecb-stat-value { font-size: 26px; font-weight: 800; color: var(--ecb-primary); }

.ecb-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.ecb-toolbar form { display: flex; gap: 8px; }

.ecb-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.ecb-table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .03em; color: var(--ecb-text-muted); padding: 10px 8px; border-bottom: 2px solid var(--ecb-border); }
.ecb-table td { padding: 10px 8px; border-bottom: 1px solid var(--ecb-border); vertical-align: top; }
.ecb-table tr:hover td { background: var(--ecb-bg); }

.ecb-badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; background: var(--ecb-bg); color: var(--ecb-text-muted); text-transform: capitalize; }
.ecb-badge-confirmed, .ecb-badge-completed, .ecb-badge-paid { background: #e8f7ef; color: var(--ecb-success); }
.ecb-badge-pending, .ecb-badge-new, .ecb-badge-scheduled { background: #fff6e5; color: var(--ecb-warning); }
.ecb-badge-cancelled, .ecb-badge-no_show, .ecb-badge-failed { background: #fdecea; color: var(--ecb-error); }
.ecb-badge-pay-paid { background: #e8f7ef; color: var(--ecb-success); }
.ecb-badge-pay-unpaid, .ecb-badge-pay-pending { background: #fff6e5; color: var(--ecb-warning); }
.ecb-badge-pay-failed, .ecb-badge-pay-refunded { background: #fdecea; color: var(--ecb-error); }
.ecb-badge-log-error { background: #fdecea; color: var(--ecb-error); }
.ecb-badge-log-warning { background: #fff6e5; color: var(--ecb-warning); }
.ecb-badge-log-info { background: var(--ecb-primary-light); color: var(--ecb-primary-dark); }

.ecb-drag-handle { cursor: grab; color: var(--ecb-text-muted); width: 20px; }
.ecb-sortable-row.is-dragging { opacity: .5; }

.ecb-modal { position: fixed; inset: 0; background: rgba(20,35,43,.5); z-index: 100000; display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.ecb-modal-inner { background: #fff; border-radius: var(--ecb-radius); max-width: 640px; width: 100%; padding: 26px 28px; box-shadow: var(--ecb-shadow-lg); }
.ecb-modal-inner h2 { margin-top: 0; }
.ecb-modal-close { float: right; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--ecb-text-muted); }

.ecb-form-row { margin-bottom: 14px; display: flex; flex-direction: column; gap: 5px; }
.ecb-form-row label { font-size: 12.5px; font-weight: 700; color: var(--ecb-text-muted); }
.ecb-form-row input[type=text], .ecb-form-row input[type=email], .ecb-form-row input[type=number],
.ecb-form-row input[type=password], .ecb-form-row input[type=date], .ecb-form-row input[type=time],
.ecb-form-row select, .ecb-form-row textarea {
	border: 1.5px solid var(--ecb-border); border-radius: 8px; padding: 9px 11px; font-size: 13.5px; max-width: 420px;
}
.ecb-form-row textarea { max-width: 100%; }
.ecb-day-toggles { display: flex; gap: 10px; flex-wrap: wrap; }
.ecb-day-toggle { display: flex; align-items: center; gap: 4px; font-weight: 400; font-size: 13px; }

.ecb-inline-msg { margin-left: 10px; font-size: 13px; font-weight: 600; }
.ecb-inline-msg.is-success { color: var(--ecb-success); }
.ecb-inline-msg.is-error { color: var(--ecb-error); }

.ecb-email-template { border: 1px solid var(--ecb-border); border-radius: 10px; padding: 14px; margin-bottom: 14px; }
.ecb-email-template label { font-size: 12px; font-weight: 700; color: var(--ecb-text-muted); display: block; margin: 8px 0 4px; }

.ecb-health-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; margin-top: 10px; }
.ecb-health-item { border: 1px solid var(--ecb-border); border-radius: 10px; padding: 14px; display: flex; gap: 10px; align-items: flex-start; }
.ecb-health-dot { font-size: 16px; line-height: 1.2; }
.ecb-health-item h4 { margin: 0 0 4px; font-size: 13.5px; }
.ecb-health-item p { margin: 0; font-size: 12.5px; color: var(--ecb-text-muted); }

.ecb-admin-calendar table { width: 100%; border-collapse: collapse; }
.ecb-admin-calendar td { border: 1px solid var(--ecb-border); padding: 8px; vertical-align: top; height: 70px; font-size: 12px; }
.ecb-admin-calendar .ecb-cal-count { display: inline-block; background: var(--ecb-primary); color: #fff; border-radius: 100px; padding: 1px 7px; font-size: 11px; margin-top: 4px; }

.ecb-service-options-editor { border: 1px solid var(--ecb-border); border-radius: 10px; padding: 10px; margin-top: 8px; }
.ecb-service-option-row { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; }
.ecb-service-option-row input[type=text] { flex: 2; }
.ecb-service-option-row input[type=number] { flex: 1; }
