/* tbcv-style.css */
.tbcv-widget {
	display: inline-flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 16px 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	min-width: 200px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tbcv-widget:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tbcv-header {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.tbcv-icon {
	font-size: 1.25rem;
	margin-right: 8px;
}

.tbcv-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tbcv-rate-container {
	display: flex;
	align-items: baseline;
}

.tbcv-currency {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	margin-right: 4px;
}

.tbcv-rate {
	font-size: 2.25rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1;
}

/* Dark mode support if theme uses it */
@media (prefers-color-scheme: dark) {
	.tbcv-widget {
		background: #1e293b;
		border-color: #334155;
	}
	.tbcv-title {
		color: #94a3b8;
	}
	.tbcv-currency,
	.tbcv-rate {
		color: #f8fafc;
	}
}
