/* style.css */

body {
    background-color: #f8f9fa;
}

h1 {
    font-weight: bold;
    font-size: 2.5rem;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    font-size: 1.2rem;
    font-weight: bold;
}

canvas {
    width: 100%;
    height: 400px; /* Força os gráficos a terem uma altura maior */
}

.input-group-text {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    canvas {
        height: 400px; /* Ajuste para telas menores */
    }
}
