body {
	/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
	/* background-color: #f4f7f6; */
	display: flex;
	justify-content: center;
	padding: 40px;
}

.container {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 6px var(--shadow-color);
	width: 100%;
	max-width: 450px;
}

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

label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 0.9rem;
}

input {
	width: 100%;
	padding: 10px;
	/* border: 1px solid #ddd; */
	border: 1px solid var(--border-color);
	border-radius: 4px;
	box-sizing: border-box;
}

button {
	width: 100%;
	padding: 12px;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	margin-top: 10px;
	transition: background 0.2s;
}

button:hover {
	background: #0056b3;
}

#result {
	margin-top: 20px;
	padding: 15px;
	border-radius: 4px;
	display: none;
	line-height: 1.6;
}

.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.rate-value {
	font-size: 28px;
	font-weight: bold;
	display: block;
	margin-top: 5px;
}