.calculator-container {
	background: white;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 40px;
	width: 100%;
}

h2 {
	text-align: center !important;
}

p {
	text-align: center;
	font-size: 18px;
}

.form-group {
	margin-bottom: 25px;
}

label {
	display: block;
	color: #555;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

input[type="number"],
select {
	width: 100%;
	padding: 12px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s;
}

input[type="number"]:focus,
select:focus {
	outline: none;
	border-color: #667eea;
}

button {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s;
}

button:hover {
	transform: translateY(-2px);
}

button:active {
	transform: translateY(0);
}

.results {
	margin-top: 30px;
	padding: 25px;
	background: #f8f9fa;
	border-radius: 12px;
	display: none;
}

.results.show {
	display: block;
	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.result-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #e0e0e0;
}

.result-item:last-child {
	border-bottom: none;
}

.result-label {
	color: #666;
	font-weight: 500;
}

.result-value {
	color: #333;
	font-weight: 700;
	font-size: 18px;
}

.result-value.highlight {
	color: #667eea;
	font-size: 24px;
}

.payment-schedule {
	margin-top: 20px;
	max-height: 300px;
	overflow-y: auto;
}

.schedule-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}

.schedule-table th,
.schedule-table td {
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
	font-size: 13px;
}

.schedule-table th {
	background: #667eea;
	color: white;
	font-weight: 600;
	position: sticky;
	top: 0;
}

.schedule-table tr:hover {
	background: #f0f0f0;
}

.u-section-1 .u-sheet-1 {
	min-height: 774px;
}

.u-section-1 .u-form-1 {
	margin-bottom: 60px;
	--thumb-color: #166cb7;
	--thumb-hover-color: #0b406e;
	--track-color: #c0c0c0;
	--track-active-color: #166cb7;
	height: 654px;
	margin-top: 60px;
	--range-width: 100%;
}

.u-section-1 .u-form-group-1 {
	--progress: 48.275862068965516%;
}

.u-section-1 .u-text-1 {
	margin-left: 0;
	font-weight: 400;
}

.u-section-1 .u-text-2 {
	margin-left: 0;
	font-weight: 400;
}

.u-section-1 .u-form-group-4 {
	--progress: 23.076923076923077%;
}

.u-section-1 .u-text-3 {
	margin-left: 0;
	font-weight: 400;
}

.u-section-1 .u-text-4 {
	margin-left: 0;
	font-weight: 400;
}

.u-section-1 .u-form-group-7 {
	margin-left: 0;
}

.u-section-1 .u-form-group-8 {
	margin-top: 0;
}

.u-section-1 .u-form-group-10 {
	margin-left: 0;
}

.u-section-1 .u-btn-1 {
	background-image: none;
	--radius: 50px;
	line-height: 1.45;
	padding: 18px 111px 18px 110px;
}

@media (max-width: 1199px) {
	.u-section-1 .u-form-group-7 {
		--progress: 48.275862068965516%;
	}

	.u-section-1 .u-form-group-10 {
		--progress: 48.275862068965516%;
	}
}

@media (max-width: 599px) {
	.u-section-1 .u-btn-1 {
		padding: 15px 40px;
	}
}
