:root{
    --legal-bg-color: #888fe7;
}

.nav{
    background-color: transparent;
}

.page{
    display: flex;
    justify-content: center;
}

.page-content{
    max-width: 1000px;
    padding: 2rem;
    padding-bottom: 100px;
    overflow-x: auto;
}

.page-content__bullets {
    counter-reset: bullet-point-counter;
    margin: 0;
}

.page-content__bullets p {
    counter-increment: bullet-point-counter;
    margin: 0; 
    padding-left: 30px;
    position: relative; 
}

.page-content__bullets p::before {
    content: counter(bullet-point-counter) ". ";
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    left: 0; 
    top: 0;
}

.page-content p:not(.form-grid__widget--privacy-notice p), .page-content table{
    font-size: 12px;
    line-height: 1.5;
}

.page-content h1{
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.page-content h1, .page-content p, .page-content h2, .page-content h3{
    color: #4A4A4A;
}

.page-content h2{
    font-size: 20px;
    line-height: 22px;
}

.page-content h3{
    font-size: 16px;
}

/*.checkmark{
    padding-right: 10px;
    background-image: url(https://blauwestadtechnologieen.blob.core.windows.net/media/checkmark_green_background--small.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    padding-left: 25px;
    background-position-y: 2px
}*/

.legal-nav-placeholdier{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legal-nav-placeholdier__legal-nav-button{
    padding: 10px 20px;
    border: 2px black solid;
    margin: 5px;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.5s;

    &:hover{
        background-color: #4A4A4A;
    }
}

.table-container{
    width: 100%;
    display: block;
    overflow-x: auto;
    box-sizing: border-box;
    padding-block: 3rem;
}

.grid-table{
   display: block;
   overflow-x: auto;
}

/* Scrollbar styling */
.grid-table::-webkit-scrollbar {
    width: 8px;
    background-color: #f0f0f0;
}

.grid-table::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

.grid-table::-webkit-scrollbar-thumb {
    background-color: #4A4A4A;
    border-radius: 15px;
}

.grid-header, 
.grid-row{
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    min-width: 800px;
}

.grid-cell{
    padding: 8px;
    border: 1px solid #ccc;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4A4A4A;
}

.grid-header .grid-cell{
    font-weight: bold;
    background-color: #f0f0f0;
}

table{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
    margin-top: 20px;
    margin-bottom: 20px;
    td, th{
        padding-inline: 0px;
        text-align: left;
    }

    th{
        min-width: 200px
    }

}


@media screen and (max-width: 960px){

    .page-content{
        margin-top:3rem;
    }
}



