.voxfor-ml-cost-analytics {
	background: #f1f1f1;
	margin: 15px 0;
}

.voxfor-ml-cost-analytics .wrap {
	max-width: none;
}

.voxfor-ml-section {
	margin-bottom: 20px;
}

.voxfor-ml-section:last-child {
	margin-bottom: 0;
}

/* SVG Chart Styles */
.voxfor-ml-chart {
	background: #fff;
	border-radius: 8px;
	margin: 0;
	display: block;
	max-width: 100%;
	height: auto;
	overflow: visible;
}

.voxfor-ml-chart .grid line {
	stroke: #e0e0e0;
	stroke-width: 1;
}

.voxfor-ml-chart .data-point {
	cursor: pointer;
	transition: all 0.2s ease;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.voxfor-ml-chart .data-point:hover {
	transform: scale(1.2);
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.voxfor-ml-chart .legend text {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 12px;
	fill: #333;
}

.voxfor-ml-chart text {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	user-select: none;
}

/* Chart container */
.voxfor-ml-chart-container {
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 8px;
	padding: 15px;
	margin: 15px 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.voxfor-ml-chart-container h3 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 16px;
	font-weight: 600;
}

/* Responsive chart */
@media (max-width: 768px) {
	.voxfor-ml-chart {
		width: 100%;
		height: auto;
	}
	
	.voxfor-ml-chart-container {
		padding: 15px;
		margin: 15px 0;
	}
	
	.voxfor-ml-chart-container h3 {
		font-size: 16px;
		margin-bottom: 15px;
	}
}

/* Loading and empty states */
.voxfor-ml-chart-loading,
.voxfor-ml-chart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	color: #666;
	font-size: 14px;
}

.voxfor-ml-chart-empty {
	background: #f9f9f9;
	border: 2px dashed #ddd;
	border-radius: 8px;
}

.voxfor-ml-usage-overview {
	margin: 15px 0;
}

.voxfor-ml-usage-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
	margin: 15px 0;
}

.voxfor-ml-usage-card {
	background: white;
	border: 1px solid #e1e1e1;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: transform 0.2s ease;
}

.voxfor-ml-usage-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.voxfor-ml-usage-card .card-icon {
	font-size: 24px;
	margin-bottom: 10px;
}

.voxfor-ml-usage-card h3 {
	margin: 0 0 10px 0;
	color: #555;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.voxfor-ml-usage-card .card-value {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
}

.voxfor-ml-usage-card .card-description {
	color: #777;
	font-size: 12px;
}

.usage-progress-bar {
	width: 100%;
	height: 24px;
	background: #f0f0f0;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 10px;
}

.usage-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #46b450 0%, #ffb900 70%, #dc3232 90%);
	transition: width 0.3s ease;
}

.usage-progress-text {
	text-align: center;
	font-weight: bold;
	color: #555;
}

.usage-info-text {
	text-align: center;
	padding: 20px;
}

.usage-info-text p {
	margin: 5px 0;
	font-size: 16px;
}

.usage-info-text small {
	color: #666;
}

.usage-breakdown-container {
	margin: 20px 0;
}

.usage-chart {
	margin: 20px 0;
	text-align: center;
}

.usage-table-container {
	margin: 20px 0;
}

.usage-tips {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

.tip-card {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 15px;
}

.tip-card h4 {
	margin: 0 0 10px 0;
	color: #495057;
}

.tip-card p {
	margin: 0;
	color: #6c757d;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.voxfor-ml-usage-cards {
		grid-template-columns: 1fr;
	}
	
	.usage-tips {
		grid-template-columns: 1fr;
	}
} 