.filtros {
	background: #f8faf9;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: flex-end;
}
.filtro-group {
	display: flex;
	flex-direction: column;
}
.filtro-group label {
	margin-bottom: 5px;
	font-weight: bold;
}

.reporte-section {
	margin-bottom: 30px;
	background: white;
	border-radius: 5px;
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.reporte-title {
	border-bottom: 2px solid #12a274;
	padding-bottom: 10px;
	margin-bottom: 15px;
	color: #1a1a2e;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 20px;
}

.chart-container {
	position: relative;
	height: 300px;
	margin-bottom: 20px;
}

.table {
	width: 100%;
	border-collapse: collapse;
}
.table th, .table td {
	padding: 10px;
	border: 1px solid #d1d9d6;
	text-align: left;
}
.table th {
	background-color: #f7faf9;
}

#historial td {
	padding: 4px 10px;
}
#historial tr:hover {
	background-color: #d0f0e5;
}	

#stock td {
	padding: 2px 10px;
}
#stock tr:hover {
	background-color: #d0f0e5;
}	

.resumen-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}
.resumen-card {
	background: #f8faf9;
	border-radius: 5px;
	padding: 15px;
	border-left: 4px solid #12a274;
}
.resumen-card h3 {
	margin-top: 0;
	color: #1a1a2e;
}
.resumen-card .valor {
	font-size: 24px;
	font-weight: bold;
	color: #12a274;
}

.text-danger {
	color: #0a7a52;
}
.text-warning {
	color: #0d8c5f;
}
.text-success {
	color: #12a274;
}