/* Sellsmith Pro live chat — visitor widget additions. All selectors are
   prefixed and scoped to the Sellsmith widget; nothing touches theme elements. */
/* On the brand-colored header, keep the status text white (readable on any brand
   color) and show "online" with a small green dot instead of green text. */
#sellsmith-root .ss-status.ssp-on { color: #ffffff; }
#sellsmith-root .ss-status.ssp-on::before {
	content: "\25CF";
	color: #4ade80;
	margin-right: 5px;
	font-size: 9px;
	vertical-align: middle;
}
#sellsmith-root .ss-status.ssp-off { color: rgba(255, 255, 255, .8); }

#sellsmith-root .ssp-live-actions {
	padding: 6px 12px 0;
	text-align: center;
}
#sellsmith-root .ssp-human-btn {
	font: inherit;
	font-size: 12px;
	line-height: 1.2;
	background: transparent;
	border: 1px solid var(--ss-brand, #a0561b);
	color: var(--ss-brand, #a0561b);
	border-radius: 999px;
	padding: 6px 14px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}
#sellsmith-root .ssp-human-btn:hover {
	background: var(--ss-brand, #a0561b);
	color: #fff;
}
#sellsmith-root .ssp-human-btn:disabled {
	opacity: 0.5;
	cursor: default;
}

/* "Email me this chat" — a quiet secondary link under the input, not a loud one. */
#sellsmith-root .ssp-emailme {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 100%;
	margin: 2px 0 8px;
	background: none;
	border: 0;
	color: var(--ss-muted, #8b9099);
	font: inherit;
	font-size: 12px;
	line-height: 1.2;
	padding: 4px 8px;
	border-radius: 8px;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease;
}
#sellsmith-root .ssp-emailme::before {
	content: "";
	width: 13px;
	height: 13px;
	background-color: currentColor;
	-webkit-mask: no-repeat center / contain;
	mask: no-repeat center / contain;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E");
	flex: none;
}
#sellsmith-root .ssp-emailme:hover { color: var(--ss-brand, #a0561b); }
#sellsmith-root .ssp-email-box {
	display: flex;
	gap: 6px;
	align-self: stretch;
}
#sellsmith-root .ssp-email-input {
	flex: 1;
	min-height: 40px;
	border: 1px solid var(--ss-line, #e4e7eb);
	border-radius: 10px;
	padding: 0 12px;
	font: inherit;
	font-size: 14px;
}
