/* ============================================================
   bateria.css — Estilos personalizados para BateriadeProblemas.html
   Complementa Tailwind CSS con estilos específicos del componente
   ============================================================ */

/* Contenedor del gráfico Chart.js */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 40vh;
    max-height: 400px;
    min-height: 300px;
}

/* Animación de apertura/cierre del bloque de solución */
.solution-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.solution-content.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 1rem;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
}
