﻿.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  
}

.div1 {
    grid-area: 1 / 1 / 3 / 3;
    max-height: 500px;
    overflow: auto;
   
    box-shadow: 0 2px 4px rgba(0, 45, 71, 0.5);
}

h2 {
    text-align:center;
}

.div2 {
    grid-area: 1 / 3 / 3 / 5;
    max-height: 500px;
    overflow: auto;
    
    box-shadow: 0 2px 4px rgba(0, 45, 71, 0.5);
}

.div3 {
    grid-area: 4 / 1 / 5 / 2;

}

.div4 {
    grid-area: 4 / 2 / 5 / 3;

}

.div5 {
    grid-area: 4 / 3 / 5 / 4;

}

.div6 {
    grid-area: 4 / 4 / 5 / 5;

}

.div7 {
    grid-area: 3 / 1 / 4 / 5;
   
    text-align: left;
}


.blauw {
    background: rgb(0, 45,71);
    color: white;
  
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
 
   
}

th, td {
    border: 1px solid rgb(0, 45,71);
    text-align: left;
    padding: 8px;
}

th {
    background-color: rgb(0,45,71);
    color: white;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    position: sticky;
    top: 0px;
}

th:last-child {
    border-right: 0px;
}

.card-container-1 {
    margin-bottom: 20px;
}

.card1 {
    inline-size: 100%;

}

.card1-title {
    height: auto;
    margin-bottom: 5px;
}


@media screen and (max-width: 768px) {
    .parent {
        display: flex;
        flex-direction: column;
    }

    table {
        height: 300px;
    }
}