.ssc-calculator-wrap {
	max-width: 480px;
	margin: 0 auto;
	padding: 24px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.ssc-title {
	text-align: center;
	font-size: 28px;
	font-weight: 800;
	color: #0a1f14;
	margin: 0 0 20px;
}

.ssc-input-row {
	margin-bottom: 16px;
}

.ssc-input {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	font-size: 16px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	outline: none;
}

.ssc-input:focus {
	border-color: #f5811f;
}

.ssc-btn {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	font-weight: 700;
	color: #f5811f;
	background: #0a1f14;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(10, 31, 20, 0.25);
	transition: opacity 0.15s ease;
	margin-bottom: 20px;
}

.ssc-btn:hover {
	opacity: 0.9;
}

.ssc-results {
	background: #f4f5f6;
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 24px;
}

.ssc-results p {
	margin: 8px 0;
	font-size: 16px;
	color: #14213d;
}

.ssc-results strong {
	color: #14213d;
}

.ssc-chart-wrap {
	position: relative;
	height: 280px;
}

.ssc-error {
	color: #c0392b;
	font-size: 14px;
	margin-top: 8px;
	text-align: center;
}
