.text-body-popup{
    font-size: 18px;
    line-height: 1.6;
    padding: 25px;
    color: #343a40;
}

#x_id{
    display: none;
}

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

.container-article{
    width: 1100px;
}

@media (max-width: 1024px) {
    #filter_id{
        display: block;
    }
}

html, body {
    margin: 0;
	scroll-behavior: smooth;
    background-color: white ;
}

.body-container{
	height: 95vh;
	width: 100%;
	margin-bottom: 0px;
	display: flex;
	flex-direction: row;
}
/* meer info popup */

.body-container{
    width: 100%;
}
  
.td {
    display: table-cell;
    vertical-align: middle;
}

.search-cover{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-div{
    width: 180%;
}

#faq-search-input, #search-icon {
    color: #fff;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
}

input:active{
    border: #0098D4 1px solid;
}

#cover {
    margin: 0px 10px;
    width: 600px;
    padding: 7px 15px; 
    background-color: #002D72;
    border-radius: 8px;
}

input[type="text"] {
    width: 100%;
    font-size: 18px;
    border: none !important;
    outline: none !important;
}
input[type="text"]:focus,
input[type="search"]:focus {
    outline: 2px solid #002D72 !important;
    outline-offset: 2px;
}

input[type="text"] {
    border: none;
}

#cover input[type="text"]::placeholder {
    color: white;
}

input[type="search"]::placeholder {
    color: #ffffff;
    opacity: 1;
}

input[type="search"] {
    color: #ffffff;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.svg-search-button{
    border: none;
    height: fit-content;
    background-color: unset;
    fill: white;
}

.svg-search-button svg{
    width: 20px;
}

.com-content-categories {
    max-width: 1070px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* Header */
.faq-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 2px solid #002D72;
    margin: 0px 10px;
    margin-bottom: 20px;
}

.faq-logo {
    height: 60px;
    margin-right: 20px;
}

.faq-title {
    display: flex   ;
    color: #002D72 !important;
    font-size: 2.1rem;
    font-family: "AutoPro", Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 1.2em;
    letter-spacing: 0;
    margin-top: 22.512px;
    margin-bottom: 22.512px;
}

/* Categories */
.title-measure {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.title-measure-2 .toggleCategory{
    margin-top: 5px;
}

.toggleCategory {
    text-transform: uppercase;
    font-weight: bold;
    color: #002D72;
    text-decoration: none;
    border: 2px solid #094785;
    padding: 5px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    background-color: white;
}

.toggleCategory:hover {
    background-color: #002D72;
    border: 2px solid #002D72;
    color: white;
    cursor: pointer;
}

.toggleCategory:focus {
    background-color: #002D72;
    border: 2px solid #002D72;
    color: white;
    cursor: pointer;
}

.toggleCategory:active{
    color: #002D72;
    background-color: #0186bb;
}

/* Questions Section */
.faq-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 7px;
}

/* FAQ Item */
.faq-item {
    background: white;
    padding: 12px;
}

.faq-question-heading {
    margin: 0;
}

.faq-question {
    /* De vraag is nu een <button> binnen de <h2> (APG accordion-patroon).
       Native button-stijl resetten zodat het uiterlijk gelijk blijft. */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: 0;
    border-bottom: 1px solid #E0E0E0;
    margin: 0;
    font-family: inherit;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.4rem;
    color: #002D72;
    padding: 0 0 1rem;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    display: none;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    margin: 0px;
}

.faq-item.active .faq-answer {
    display: block;
}

a{
    color: rgb(0, 45, 114);
    text-decoration: underline;
    position: relative; 
    display: inline-block;
    margin-right: 5px; 
}

a img{
    fill: #002D72;
}

.reset-btn-div{
    width: fit-content;
    margin: 0px auto 10px auto;
}

.faq-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}