.emc-ic-widget {
	--emc-ink: #14213d;
	--emc-accent: #0f5c46;
	--emc-accent-light: #e8f3ef;
	--emc-border: #d9dee5;
	--emc-muted: #5b6472;
	/*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;*/
	color: var(--emc-ink);
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}
.emc-ic-widget * {
	box-sizing: border-box;
}
.emc-ic-inputs {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	align-items: center;
	justify-content: center;
	background: #fafbfc;
	border: 1px solid var(--emc-border);
	border-radius: 6px;
	padding: 20px;
}
.emc-ic-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	justify-content: center;
}
.emc-ic-field label {
	font-size: 13px;
	font-weight: 600;
	color: var(--emc-muted);
}
.emc-ic-field input[type="number"] {
	padding: 9px 12px;
	border: 1px solid var(--emc-border);
	border-radius: 4px;
	font-size: 15px;
	min-width: 220px;
	height: 40px;
}
#emc-ic-days {
	min-width: 110px;
}
.emc-ic-button {
	align-self: center;
	margin: 30px 0px 0px 30px;
	flex-shrink: 0;
}
.emc-ic-button:not(.elementor-button) {
	background: var(--emc-accent);
	color: #fff;
	border: none;
	padding: 11px 24px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
}
.emc-ic-button:not(.elementor-button):hover {
	background: #0c4a39;
}
.emc-ic-status {
	margin-top: 12px;
	font-size: 13px;
	color: var(--emc-muted);
	min-height: 18px;
}
.emc-ic-results {
	margin-top: 20px;
}
.emc-ic-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}
.emc-ic-summary-item {
	flex: 1;
	min-width: 180px;
	background: var(--emc-accent-light);
	border-radius: 6px;
	padding: 14px 16px;
}
.emc-ic-summary-label {
	display: block;
	font-size: 12px;
	color: var(--emc-muted);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 4px;
	text-align: center;
}
.emc-ic-summary-value {
	display: block;
	font-size: 20px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--emc-accent);
	text-align: center;
}
.emc-ic-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.emc-ic-table-actions {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 10px;
}
.emc-ic-export-button {
	background: #fff;
	color: var(--emc-accent);
	border: 1px solid var(--emc-accent);
	padding: 7px 16px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}
.emc-ic-export-button:hover {
	background: var(--emc-accent);
	color: #fff;
}
.emc-ic-export-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.emc-ic-export-button:disabled:hover {
	background: #fff;
	color: var(--emc-accent);
}
.emc-ic-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.emc-ic-table th {
	text-align: left;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--emc-muted);
	border-bottom: 2px solid var(--emc-border);
	padding: 8px 10px;
	font-weight: 900;
	line-height: 1.4;
}
.emc-ic-table td {
	padding: 10px;
	border-bottom: 1px solid var(--emc-border);
	font-variant-numeric: tabular-nums;
	line-height: 1.4;
	font-weight: 500;
}
.emc-ic-table tbody tr:hover {
	background: #f8faf9;
}
.emc-ic-disclaimer {
	margin-top: 16px;
	font-size: 12px;
	color: var(--emc-muted);
	line-height: 1.5;
}
.emc-ic-locked {
	background: #fafbfc;
	border: 1px solid var(--emc-border);
	border-radius: 6px;
	padding: 24px;
	text-align: center;
}
@media (max-width: 640px) {
	.emc-ic-inputs {
		flex-direction: column;
		align-items: stretch;
	}
	.emc-ic-field input[type="number"] {
		min-width: 0;
		width: 100%;
	}
	.emc-ic-table {
		font-size: 12px;
		min-width: 640px;
	}
	.emc-ic-table th,
	.emc-ic-table td {
		padding: 6px;
		white-space: nowrap;
	}
}
