/* Stats Section CSS */
#stats .bg-white {
	transition: transform 0.3s ease;
}

#stats .bg-white:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Dark theme adjustments */
[data-bs-theme="dark"] #stats .bg-white {
	background-color: var(--bs-secondary-bg) !important;
	border-color: var(--bs-border-color) !important;
}

[data-bs-theme="dark"] #stats .text-muted {
	color: #adb5bd !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
	#stats .row.g-4 > div {
		margin-bottom: 1rem;
	}
	
	#stats .row.g-4 > div:last-child {
		margin-bottom: 0;
	}
	
	#stats .display-6 {
		font-size: 2.5rem;
	}
}
