/* estilos_ireport.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f9;
    color: #333;
}

/* Tarjetas de Contenedor */
.container-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Encabezados de Sección */
.section-header {
    border-bottom: 2px solid #3f51b5;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #3f51b5;
    font-weight: bold;
}

/* Estilo para Inputs y Selects */
.w3-input, .w3-select {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px !important;
}

/* Botones con identidad */
.btn-primary { background-color: #3f51b5 !important; color: white !important; }
.btn-secondary { background-color: #607d8b !important; color: white !important; }

/* Pie de página */
footer {
    border-top: 1px solid #ddd;
    background-color: #fff;
    margin-top: 50px;
}