.dtc-widget {
	max-width: 420px;
	margin: 24px auto;
	font-family: 'Noto Sans Bengali', 'SolaimanLipi', 'Segoe UI', Arial, sans-serif;
	text-align: center;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 28px 20px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.dtc-widget * {
	box-sizing: border-box;
}

.dtc-header {
	margin-bottom: 20px;
}

.dtc-header-text {
	font-size: 16px;
	font-weight: 700;
	color: #111827 !important;
	margin: 0 0 6px;
	opacity: 1 !important;
}

.dtc-header-arrow {
	display: flex;
	justify-content: center;
	color: var(--dtc-primary, #059669);
	animation: dtc-bounce 1.4s ease-in-out infinite;
}

@keyframes dtc-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(5px);
	}
}

.dtc-btn.dtc-ask-btn {
	background: linear-gradient(135deg, var(--dtc-primary, #059669), var(--dtc-primary-dark, #047857));
	color: #fff;
	border: none;
	padding: 14px 28px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	box-shadow: 0 4px 12px var(--dtc-soft-border, rgba(5, 150, 105, 0.35));
}

.dtc-btn.dtc-ask-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px var(--dtc-soft-border, rgba(5, 150, 105, 0.45));
}

.dtc-step-loading {
	padding: 10px 0;
}

.dtc-spinner {
	width: 42px;
	height: 42px;
	margin: 0 auto 16px;
	border: 4px solid var(--dtc-soft-bg, #d1fae5);
	border-top-color: var(--dtc-primary, #059669);
	border-radius: 50%;
	animation: dtc-spin 0.9s linear infinite;
}

@keyframes dtc-spin {
	to {
		transform: rotate(360deg);
	}
}

.dtc-loading-text {
	font-size: 16px;
	color: #374151 !important;
	margin: 0;
	opacity: 1 !important;
}

.dtc-result-box {
	margin-bottom: 18px;
}

.dtc-location-line {
	font-size: 13px;
	color: #6b7280;
	margin: 0 0 6px;
}

.dtc-rate-line {
	font-size: 22px;
	font-weight: 700;
	color: var(--dtc-primary-dark, #047857) !important;
	margin: 0 0 6px;
}

.dtc-updated-line {
	font-size: 12px;
	color: #9ca3af;
	margin: 0;
}

.dtc-error-line {
	color: #dc2626;
	font-size: 14px;
	margin-top: 10px;
}

.dtc-converter-box {
	border-top: 1px solid #f0f0f0;
	padding-top: 18px;
	margin-top: 6px;
}

.dtc-label {
	display: block;
	font-size: 14px;
	color: #374151 !important;
	margin-bottom: 10px;
	font-weight: 600;
}

.dtc-converter-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.dtc-input-group {
	display: flex;
	align-items: stretch;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	overflow: hidden;
	background: #f9fafb;
}

.dtc-input-prefix {
	padding: 0 10px;
	color: #6b7280;
	font-weight: 600;
	background: #eef2f7;
	display: flex;
	align-items: center;
}

.dtc-dollar-input {
	border: none;
	outline: none;
	padding: 10px 12px;
	font-size: 16px;
	width: 130px;
	background: transparent;
}

.dtc-equals {
	font-size: 18px;
	color: #6b7280;
}

.dtc-output-group {
	background: var(--dtc-soft-bg, #ecfdf5);
	border: 1px solid var(--dtc-soft-border, #a7f3d0);
	border-radius: 10px;
	padding: 10px 16px;
	font-size: 17px;
	font-weight: 700;
	color: var(--dtc-primary-dark, #047857);
	min-width: 130px;
}

@media (max-width: 420px) {
	.dtc-widget {
		padding: 22px 14px;
	}

	.dtc-converter-row {
		flex-direction: column;
	}
}
