/* style.css */
.uae-cost-calc-container-480 {
	background: #ffffff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	font-family: inherit;
	max-width: 600px;
	margin: 0 auto;
}

.uae-cost-title-480 {
	margin-top: 0;
	margin-bottom: 25px;
	text-align: center;
	color: #333;
}

.uae-cost-form-480 {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
}

.uae-cost-field-group-480 {
	display: flex;
	flex-direction: column;
}

.uae-cost-field-group-480 label {
	margin-bottom: 8px;
	font-weight: 500;
	color: #555;
	font-size: 15px;
}

.uae-cost-input-wrapper-480 {
	position: relative;
	display: flex;
	align-items: center;
}

.uae-cost-currency-480 {
	position: absolute;
	left: 15px;
	color: #777;
	font-weight: 600;
}

.uae-cost-input-480 {
	width: 100%;
	padding: 12px 15px 12px 60px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.uae-cost-input-480:focus {
	border-color: #d4af37;
	outline: none;
}

.uae-cost-result-480 {
	background: #f9f9f9;
	padding: 25px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid #eee;
}

.uae-cost-result-480 h4 {
	margin: 0 0 15px 0;
	color: #555;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
}

.uae-cost-total-value-480 {
	font-size: 36px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 10px;
}

.uae-cost-total-currency-480 {
	font-size: 20px;
	opacity: 0.8;
}