/**
 * HTTPS Domain override styles.
 *
 * Styles the daily URL quota badge injected into the Domain Editor toolbar.
 * Mirrors the plugin's own count-badge look so it feels native.
 */

.shadcn-child-https-domain__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.4rem;
}

.shadcn-child-https-domain__quota {
	display: inline-flex;
	align-items: center;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	font-family: inherit;
	font-size: var(--wp--preset--font-size--sm, 0.75em);
	font-weight: 500;
	line-height: 1.3;
	color: var(--de-fg, #1e1e1e);
	background: var(--de-bg, #f6f7f7);
	border: 1px solid var(--de-border, #dcdcde);
}

.shadcn-child-https-domain__quota.is-warning {
	color: #8a4b00;
	background: #fcf0e3;
	border-color: #dba617;
}

.shadcn-child-https-domain__quota.is-error {
	color: #8a1f1f;
	background: #fcf0f1;
	border-color: #d63638;
}
