/* Maak de knoppen alleen zichtbaar op de startpagina */
div[data-id="home"] .landing-page-content {
    display: block;
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
    border-radius: 6px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

/* Alle andere pagina's verbergen standaard de knoppen */
.landing-page-content {
    display: none;
}

/* Knoppenstijl */
div[data-id="home"] .landing-page-content .button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Knoopstijl */
div[data-id="home"] .landing-page-content .btn {
    position: relative;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0073aa;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    width: 180px;
    transition: background-color 0.3s;
    border: 1px solid transparent;
}

/* Hover effect */
div[data-id="home"] .landing-page-content .btn:hover {
    background-color: #005f8c;
}

/* Responsieve aanpassingen voor mobiel */
@media (max-width: 768px) {
    div[data-id="home"] .landing-page-content {
        width: 90%;
        padding: 20px;
    }

    div[data-id="home"] .landing-page-content .button-container {
        flex-direction: column;
        gap: 10px;
    }

    div[data-id="home"] .landing-page-content .btn {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }
}

/* Verberg ongewenste elementen */
.SocialShare__socialShareList {
    display: none;
}

.articleDetail .KBArticleRightContainer__userFollowOption,
.articleList .KBArticleRightContainer__userFollowOption,
.article_subcategory .KBArticleRightContainer__userFollowOption,
.articleDetail .KBArticleRightContainer__followerCount,
.article_subcategory .KBArticleRightContainer__followerCount,
.articleList .KBArticleRightContainer__followerCount,
.ContentList_subCategory .ListHeader_dottedPopup,
.KbCategory_box .KbCategory_dottedPopup,
.KbDetailRtContainer_widgetRight .KbDetailRtContainer_widgetSection:nth-child(1),
.articleList .ArticleListRightContainer_widgetRight .ArticleListRightContainerwidgetSection:nth-child(1) .ArticleListRightContainer_followOption,
.articleList .ArticleListRightContainer_widgetRight .ArticleListRightContainerwidgetSection:nth-child(1) .ArticleListRightContainer_subscribeDescription {
    display: none;
}

/* Verberg navigatietabs voor Startpagina en Helpcentrum */
#portal_tabHome,
#portal_tabSolutions {
    display: none;
}
.Header__headerContainer {
    display: block; /* Gebruik block om inhoud eenvoudig te stapelen */
    height: 84px; /* Laat de container zich aanpassen aan de inhoud */
    width: 100%;
}

.Header__headerImg {
    height: 110px; /* Zorg ervoor dat deze hoogte past bij je ontwerp */
    width: 100%;
    background-size: cover;
    background-position: center;
}

.Header__titleSearchWrapper {
    display: block; /* Zorg ervoor dat de zoekbalk een blokweergave heeft */
    width: 100%;
    padding: 10px 0; /* Voeg wat ruimte toe boven en onder de balk */
    box-sizing: border-box; /* Zorg ervoor dat padding wordt meegerekend */
}/* Verberg specifieke elementen in de KBArticleRightContainer */
.KBArticleRightContainer__title,
.KBArticleRightContainer__descriptionContent,
.KBArticleRightContainer__userFollowOption {
    display: none;
}

/* Verberg het main element alleen op de landingspagina */
main.Layout__twoColumn[data-id="home"] {
    display: none;
}

/* Verberg het specifieke <main> element alleen op de homepagina */
main.Layout__narrow[data-id="home"]#acbt_layout {
    display: none;
}
:root {
  --color-accent: #17a2b8; /* Turquoise/helder blauw */
  --color-accent-hover: #148f9c; /* Donkerdere variant voor hover */
  --font-family: 'Inter', sans-serif; /* Modern sans-serif lettertype */
}

