.card {
	width: 300px;
	height: 70px;
	background-color: #4CAF50;
	color: white;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease-in-out, background-color 0.3s
		ease-in-out;
	cursor: pointer;
}

.card:hover {
	transform: scale(1.1);
	background-color: #45a049;
}

.card-content {
	text-align: center;
}

h2 {
	margin: 0;
	font-size: 18px;
}

.chart-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	padding: 20px;
}

.chart-container {
	padding: 20px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.card-container {
	padding: 20px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: row;
    justify-content: space-around;
}

.card-container-wc {
    justify-content: flex-start;
    gap : 140px;
    padding-left: 75px;
}

h5 {
	text-align: center;
	margin-bottom: 10px;
}

h3 {
	text-align: center;
	margin-top: 20px;
	color:#0275d8;
	font-size: 1.40rem;
}
.image-home {
	width: 30px;
	height: 30px;
}
