.tarieven-title{
    /*color: var(--colorPrimary);!important;*/
    color: var(--colorAccent);!important;
}

.tarieven-section{
    display: flex;
    flex-wrap: wrap;
}
.tarieven-card{
    width: 70%;
    margin-bottom: 50px;
}
.tarieven-table-container{
    border: 1px solid var(--borderLightColor);
    border-radius: 5px;
}
.tarieven-records-header{
    display: flex;
    width: 100%;
    justify-content: flex-start;
    height: 50px;
}
.tarieven-records-header-column{
    display: flex;
    /*height: 100%;*/
    justify-content: left;
    align-content: center;
    align-items: center;
    font-weight: var(--navFontWeight);
        font-size: var(--textFontSize);
    padding: var(--textPadding);

}

.tarieven-column-one{
    width: 40%;
}

.tarieven-column-two{
    width: 20%;
}

.tarieven-column-three{
    width: 20%;
}
.tarieven-records-container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    height: 400px;
    overflow-y: scroll;

}

.tarieven-record{
    display: flex;
    height: 20px;
    color: var(--unfocusedFontColor);
}
.tarieven-record-plaatsnaam{
    color: var(--colorPrimary);
    /*color: var(--colorAccent);*/

}

/* Media query for tablets */
@media (max-width: 991px) {
    .tarieven-card {
    width: var(--mobileContentWidth);
    margin-bottom: 50px;
}
    .tarieven-records-header-column {
    display: flex;
    /* height: 100%; */
    justify-content: left;
    align-content: center;
    align-items: center;
    font-weight: var(--navFontWeight);
    font-size: var(--mobileTextFontSize);
    padding: var(--textPadding);
}
    .tarieven-records-header-column {
        display: flex;
        /* height: 100%; */
        justify-content: left;
        align-content: center;
        align-items: center;
        font-weight: var(--navFontWeight);
        font-size: var(--mobileTextFontSize);
        padding: var(--textPadding);
    }
    .tarieven-column-one {
    width: 20%;
}
}