.shh-wrapper {
	max-width: 420px;
	margin: 1.5em 0;
	padding: 1.5em;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	background: #fafafa;
	font-family: inherit;
}

.shh-form {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.shh-field {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
}

.shh-field label {
	font-weight: 600;
	font-size: 0.92em;
	color: #333;
}

.shh-field input,
.shh-field select {
	padding: 0.55em 0.7em;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1em;
	background: #fff;
}

.shh-calc-btn {
	padding: 0.7em 1em;
	border: none;
	border-radius: 6px;
	background: #2563eb;
	color: #fff;
	font-weight: 600;
	font-size: 1em;
	cursor: pointer;
	transition: background 0.15s ease;
}

.shh-calc-btn:hover {
	background: #1d4ed8;
}

.shh-result {
	margin-top: 1.2em;
	padding: 1em;
	border-radius: 8px;
	text-align: center;
	border: 1px solid #a7f3d0;
	background: #ecfdf5;
}

.shh-result.shh-risk-normal {
	background: #ecfdf5;
	border-color: #a7f3d0;
}

.shh-result.shh-risk-warning {
	background: #fffbeb;
	border-color: #fde68a;
}

.shh-result.shh-risk-danger {
	background: #fef2f2;
	border-color: #fecaca;
}

.shh-result-main {
	font-size: 1.4em;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.3em;
}

.shh-result-note {
	font-size: 0.92em;
	color: #4b5563;
	line-height: 1.4;
}

.shh-result-note a {
	color: #2563eb;
	text-decoration: underline;
}
