/**
 * Order form selector dropdowns
 *
 * Used by [sc_event_select] and [sc_delivery_location] (rendered by
 * VenuesLive\SatelliteCatering\OrderForm\Selectors).
 *
 * Theme integration: uses --color-*, --color-bg, --color-text,
 * --color-border, --color-muted, --color-primary CSS custom properties
 * from the active theme, with fallbacks for themes that don't set them.
 */

/* ---- Selector boxes ------------------------------------------------------ */
.sc-event-select-box,
.sc-delivery-location-box {
	margin: 0 0 20px;
}

.sc-select-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--color-muted, #555);
	margin-bottom: 6px;
}

.sc-event-select-box select,
.sc-delivery-location-box select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--color-border, rgba(0,0,0,.08));
	border-radius: 6px;
	font-size: 14px;
	color: var(--color-text, #1a1a2e);
	background: var(--color-bg, #fff);
	cursor: pointer;
	transition: border-color .15s, box-shadow .15s;
	box-sizing: border-box;
}

.sc-event-select-box select:focus,
.sc-delivery-location-box select:focus {
	outline: none;
	border-color: var(--color-primary, #00a3ad);
	box-shadow: 0 0 0 3px rgba(0, 163, 173, 0.15);
}

.sc-select-status {
	display: block;
	font-size: 12px;
	margin-top: 4px;
	color: var(--color-muted, #555);
	min-height: 16px;
}

/* ---- "No options available" info block ----------------------------------
   Replaces the inline `style="margin:0 0 15px 0;"` on woocommerce-info
   notices that the shortcodes used to emit. */
.sc-info-block {
	margin: 0 0 15px 0;
}
