/* Estadísticas de oyentes — frontend */
.estadisticas-oyentes-container {
	border: 1px solid #ddd;
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 25px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	font-family: Arial, sans-serif;
}

.estadisticas-oyentes-container h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.5em;
	color: #333;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 10px;
}

.estadisticas-oyentes-container h4 {
	font-size: 1.2em;
	color: #444;
	margin-bottom: 10px;
}

.estadisticas-grafico-container {
	margin-bottom: 30px;
	padding: 15px;
	background-color: #f9f9f9;
	border-radius: 5px;
}

.grafico-descripcion {
	color: #666;
	font-style: italic;
	margin-bottom: 15px;
	font-size: 0.95em;
}

.grafico-wrapper {
	position: relative;
	height: 220px;
	width: 100%;
}

.estadisticas-tabla-container {
	margin-top: 25px;
}

.estadisticas-tabla {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
	font-size: 0.95em;
}

.estadisticas-tabla th,
.estadisticas-tabla td {
	border: 1px solid #ddd;
	padding: 10px;
	text-align: left;
}

.estadisticas-tabla th {
	background-color: #f7f7f7;
	font-weight: bold;
}

.estadisticas-tabla tr:nth-child(even) {
	background-color: #fcfcfc;
}

.estadisticas-servidor-oyentes-container {
	border: 1px solid #ddd;
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 30px;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	font-family: Arial, sans-serif;
}

.estadisticas-servidor-oyentes-container h3 {
	margin-top: 0;
	margin-bottom: 25px;
	font-size: 1.6em;
	color: #2c3e50;
	text-align: center;
	border-bottom: 2px solid #ecf0f1;
	padding-bottom: 15px;
}

.recurso-item {
	margin-bottom: 30px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 6px;
	border-left: 4px solid #3498db;
}

.recurso-item:last-child {
	margin-bottom: 0;
}

.recurso-item h4 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.3em;
	color: #2c3e50;
}

.recurso-descripcion {
	color: #7f8c8d;
	margin-bottom: 20px;
	font-size: 0.95em;
}

.barra-progreso-container {
	margin-bottom: 15px;
}

.barra-progreso {
	height: 20px;
	background-color: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 15px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.barra-progreso-relleno {
	height: 100%;
	border-radius: 10px;
	transition: width 0.3s ease;
	position: relative;
}

.barra-progreso-relleno::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-size: 20px 20px;
}

.barra-progreso-leyenda {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 10px;
}

.leyenda-item {
	display: flex;
	align-items: center;
	font-size: 0.9em;
}

.leyenda-color {
	width: 15px;
	height: 15px;
	border-radius: 3px;
	margin-right: 8px;
	display: inline-block;
}

.barra-progreso-porcentaje {
	text-align: right;
	font-size: 0.9em;
	color: #7f8c8d;
	font-weight: bold;
}

.recurso-ilimitado {
	background-color: #e8f5e9;
	border: 1px solid #c8e6c9;
	padding: 15px;
	border-radius: 5px;
	text-align: center;
	color: #2e7d32;
}

.recurso-resumen {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px dashed #ddd;
}

.recurso-resumen h4 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #2c3e50;
}

.recurso-resumen-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.resumen-item {
	background-color: #f8f9fa;
	padding: 15px;
	border-radius: 5px;
	text-align: center;
}

.resumen-titulo {
	display: block;
	font-size: 0.9em;
	color: #7f8c8d;
	margin-bottom: 5px;
}

.resumen-valor {
	display: block;
	font-size: 1.2em;
	font-weight: bold;
	color: #2c3e50;
}

.chartjs-tooltip {
	opacity: 0;
	position: absolute;
	background: rgba(0, 0, 0, 0.8);
	color: white;
	border-radius: 3px;
	padding: 6px 10px;
	font-size: 12px;
	transition: all 0.1s ease;
	pointer-events: none;
	z-index: 100;
}

.eo-error {
	background-color: #ffebee;
	border-left: 4px solid #f44336;
	padding: 15px;
	border-radius: 4px;
	color: #c62828;
}

.eo-info {
	background-color: #e3f2fd;
	border-left: 4px solid #2196f3;
	padding: 15px;
	border-radius: 4px;
	color: #1565c0;
}

.eo-info a {
	color: #0d47a1;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.estadisticas-oyentes-container,
	.estadisticas-servidor-oyentes-container {
		padding: 15px;
	}

	.estadisticas-tabla {
		font-size: 0.9em;
	}

	.estadisticas-tabla th,
	.estadisticas-tabla td {
		padding: 8px;
	}

	.grafico-wrapper {
		height: 200px;
	}

	.barra-progreso-leyenda {
		flex-direction: column;
		gap: 10px;
	}

	.recurso-resumen-grid {
		grid-template-columns: 1fr;
	}

	.recurso-item {
		padding: 15px;
	}
}
