/**
 * DuraCube LRV Compliance Calculator styles
 * Aligned to the client-supplied mockup: light card, rounded dark inputs,
 * full-width black button, green PASS / red FAIL pill.
 */

.dlc-widget {
	max-width: 550px;
	margin: 0 auto;
	padding: 32px;
	background: #f4f4f5;
	border-radius: 12px;
	font-family: inherit;
	box-sizing: border-box;
	font-family: "Roobert", Sans-serif;
}

.dlc-widget * {
	box-sizing: border-box;
}

.dlc-widget .dlc-title {
	margin: 0 0 15px;
	font-size: 27px;
	font-weight: 700;
	color: #000;
	text-align: center;
}

.dlc-widget .dlc-subtitle {
	margin: 0 0 24px;
	font-size: 16px;
	color: #A4A4A4;
	text-align: center;
    letter-spacing: 0;
	font-family: "Roobert", Sans-serif !important;
}

.dlc-widget .dlc-field-wrap {
	margin-bottom: 18px;
	position: relative;
}

.dlc-field-wrap label {
	display: block;
	margin-bottom: 6px;
	font-size: 16px;
	font-weight: 600;
	color: #17181a;
}

.dlc-combobox {
	position: relative;
}

.dlc-widget .dlc-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	border: 1px solid #e2e2e5;
	border-radius: 8px;
	background: #ffffff;
	color: #000;
	font-family: "Roobert", Sans-serif !important;
}

.dlc-input:focus {
	outline: none;
	border-color: #17181a;
}

.dlc-input::placeholder {
	color: #a1a1aa;
}

.dlc-suggestions {
	list-style: none;
	margin: 4px 0 0;
	padding: 4px;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 20;
	background: #ffffff;
	border: 1px solid #e2e2e5;
	border-radius: 8px;
	max-height: 220px;
	overflow-y: auto;
	box-shadow: 0 8px 20px rgba( 0, 0, 0, 0.08 );
}

.dlc-suggestion {
	padding: 8px 10px;
	font-size: 14px;
	border-radius: 6px;
	cursor: pointer;
	color: #17181a;
}

.dlc-suggestion:hover,
.dlc-suggestion:focus,
.dlc-suggestion.is-active {
	background: #f4f4f5;
}

.dlc-calculate-btn {
	width: 100%;
	padding: 14px;
	margin-top: 4px;
	background: #17181a;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	font-family: "Roobert", Sans-serif !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
}

.dlc-calculate-btn:hover {
	background: #2b2c2f;
}

.dlc-result {
	margin-top: 24px;
	text-align: center;
}

.dlc-widget .dlc-contrast-value {
	margin: 0 0 12px;
	font-size: 18px;
	color: #000;
}

.dlc-widget .dlc-contrast-value strong {
	color: #000;
	font-weight: 700;
}

.dlc-compliance-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ffffff;
}

.dlc-compliance-pill.dlc-pass {
	background: #22c55e;
}

.dlc-compliance-pill.dlc-pass::before {
	content: '\2713';
}

.dlc-compliance-pill.dlc-fail {
	background: #ef4444;
}

.dlc-compliance-pill.dlc-fail::before {
	content: '\2715';
}

.dlc-widget .dlc-content {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid #e2e2e5;
	font-size: 12px;
	line-height: 1.6;
	color: #A4A4A4;
}

.dlc-widget .dlc-content p {
	margin: 0 0 10px;
}

.dlc-widget .dlc-woodgrain-disclaimer {
	color: #A4A4A4;
	letter-spacing: 0;
	font-family: "Roobert", Sans-serif !important;
    font-weight: 400;
	font-size: 16px;
}

.dlc-widget .dlc-woodgrain-disclaimer strong {
	color: #000;
	font-weight: 700;
}