/* Stats Cards Component Styles */

.stats-card {
	transition: all 0.2s ease-in-out;
	border: 1px solid #e9ecef;
	cursor: pointer;
}

.stats-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	border-color: #007bff;
}

.stats-card:hover .card-title i {
	transform: scale(1.1);
	transition: transform 0.2s ease-in-out;
}

.stats-card:hover h3 {
	color: #007bff;
	transition: color 0.2s ease-in-out;
}
