.threed-printing-calc-container,
.threed-printing-calc-container * {
	box-sizing: border-box;
}
.threed-printing-calc-container {
	max-width: 1200px;
	margin: auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 30px;
}
.threed-printing-calc-title {
	grid-column: 1 / -1;
	text-align: center;
	color: #4a7c59;
}
.form-group {
	margin-bottom: 16px;
}
.threed-printing-calc-label {
	display: block;
	font-weight: 500;
	margin-bottom: 6px;
}
.threed-printing-calc-input[type="number"],
.threed-printing-calc-select {
	width: 100%;
	padding: 12px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.desc {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 12px;
}
.left-column {
	padding-right: 10px;
	border-right: 1px solid #e0e0e0;
}
.right-column {
	padding-left: 10px;
}
.result {
	background: #e8f5e9;
	border: 1px solid #a5d6a7;
	border-radius: 4px;
	padding: 16px;
	margin-bottom: 20px;
}
#chart-container {
	margin-top: 20px;
}
@media (max-width: 768px) {
	.threed-printing-calc-container {
		grid-template-columns: 1fr;
		padding: 10px;
	}
	.left-column,
	.right-column {
		border: none;
		padding: 0;
	}
}

.hide {
	display: none !important;
}

.btn-calc {
	background-color: rgb(40, 60, 80);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.btn-calc:hover {
	background-color: rgb(55, 80, 110);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-calc:active {
	background-color: rgb(30, 45, 60);
	transform: scale(0.97);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
