.resumen {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr /* repeat(3, 1fr)*/;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 1 / 3 / 2 / 4; }


.div1 {
    display: grid; 
    grid-template-columns: 1fr; 
    grid-template-rows: 1fr 2fr 2fr; 
    grid-row-gap: 10px;
    height: 85vh;
}

.div2 {
    display: grid; 
    grid-template-columns: 1fr; 
    grid-template-rows: 1fr 1fr; 
    grid-row-gap: 10px;
    height: 85vh;

}

.div3 {
    display: grid; 
    grid-template-columns: 1fr; 
    grid-template-rows: 1fr 1fr 1fr; 
    grid-row-gap: 10px;
    height: 85vh;

    /* height: 80vh; */
}

.div11 { grid-area: 1 / 1 / 2 / -1; }
.div12 { grid-area: 2 / 1 / 3 / -1; }
.div13 { grid-area: 3 / 1 / 4 / -1; }

.div21 { grid-area: 1 / 1 / 2 / -1; }
.div22 { grid-area: 2 / 1 / 3 / -1; }

.div31 { grid-area: 1 / 1 / 2 / -1; }
.div32 { grid-area: 2 / 1 / 3 / -1; }
.div33 { grid-area: 3 / 1 / 4 / -1; }

.resumen>div div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 1rem;
}

.div11 h1 {
    text-align: center;
    margin: 0;
}

.div11 p {
    text-align: center;
    margin: 0;
}

.div13 {
    overflow-y: auto;
    max-height: 100%;
}
.div13 h3{
    font-size: large;
    color: #666666;
    font-weight: 650;
}

.user-exports {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.user-exports th, .user-exports td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.user-exports th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.user-exports tr:hover {
    background-color: #f5f5f5;
}