/* Estilos para el contenedor de la tabla de cliente y resumen */
.grid-cols-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
}

@media print {
    /* 1. Asegurar que las tablas de datos se impriman compactas */
    .grid-cols-2 table {
        border: 1px solid #000 !important;
        font-size: 8.5px !important; /* Texto pequeño para que quepa todo */
        width: 100% !important;
    }

    .page-break-before {
        page-break-before: always !important;
        break-before: page !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 2. Estilo para las celdas */
    .grid-cols-2 td {
        padding: 2px 4px !important;
        border: 0.5px solid #000 !important;
    }

    /* 3. Fondo gris para las etiquetas (igual que en tu imagen) */
    .bg-gray-100 {
        background-color: #f3f4f6 !important;
        font-weight: bold !important;
    }

    /* 4. Alineaciones de texto */
    .text-right { text-align: right !important; }
    .text-center { text-align: center !important; }
    
    /* 5. Asegurar visibilidad de colores */
    .text-blue-600 { color: #1e40af !important; }
}


.container-cronograma{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}

.sub-container-cronograma{
    margin-top: 20PX;
    display: flex;
    flex-direction: column;
}

.title-cronograma{
    color: #000;
    font-size: 40px;
    text-decoration: underline;
}
.text-anexo,
.text-proyecto{
    color: #000;
    font-size: 12px;
}

.container-center{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;

}