.wpc-container {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	max-width: 500px;
	margin: 0 auto;
	font-family: 'Figtree', sans-serif;
}

.wpc-header {
	margin-bottom: 25px;
	text-align: center;
}

.wpc-header h3 {
	margin: 0 0 10px;
	font-size: 24px;
	color: #1A1A1A;
}

.wpc-header p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.wpc-input-group {
	margin-bottom: 20px;
}

.wpc-input-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
	font-size: 14px;
}

.wpc-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.wpc-input:focus {
	border-color: #1A1A1A;
	outline: none;
}

.wpc-results {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	animation: fadeIn 0.5s ease;
}

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

.wpc-breakdown {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.wpc-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	font-size: 14px;
	color: #555;
}

.wpc-divider {
	height: 1px;
	background: #ddd;
	margin: 10px 0;
}

.wpc-total {
	font-weight: 700;
	font-size: 18px;
	color: #1A1A1A;
	margin-bottom: 0;
	margin-top: 5px;
}

.wpc-text-success {
	color: #28a745;
}

.wpc-download-btn {
	width: 100%;
	padding: 14px;
	background-color: #1A1A1A;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background-color 0.3s;
}

.wpc-download-btn:hover {
	background-color: #333;
}
