

/* Algemene stijlen voor MarcomGPT */
html body {
    font-family: 'Montserrat', sans-serif; /* Montserrat Light 300 */;
    font-weight: 300;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

ul {
font-family: 'Montserrat', sans-serif; /* Zorgt voor consistent lettertype */
  font-size: 1rem; /* Vergelijkbaar met de tekst in de hero */
  line-height: 1.6; /* Zorgt voor goede leesbaarheid */
  padding-left:5px;
}


/* Koppen met Montserrat ExtraBold */
body h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* ExtraBold */
    color:#1d3557;
}

a {
font-weight:bold;
color:#FF5571;
text-decoration:none;
}

footer {
font-size:0.8rem;
}

/* Sitewide Primary Color */
.text-primary {
    color: #1d3557 !important;
}

.btn-primary {
    background-color: #FF5571;
    border-color: #FF5571;
}

.btn-primary:hover {
    background-color: #C71D73;
    border-color: #C71D73;
}

p {
  font-family: 'Montserrat', sans-serif; /* Zorgt voor consistent lettertype */
  font-size: 1.25rem; /* Vergelijkbaar met de tekst in de hero */
  line-height: 1.6; /* Zorgt voor goede leesbaarheid */
  margin-bottom: 1rem; /* Ruimte onder paragrafen */
  color: #333; /* Standaardkleur voor leesbare tekst */
}


/* Sticky Navigatiemenu */
.navbar {
    background-color: #1d3557;
    color:#fffff;
    position: sticky;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    top: 0;
    z-index: 1100;
}

.navbar-brand {
    font-weight: bold;
    color: #f1faee;
}

.navbar-brand:hover {
    font-weight: bold;
    color: #f1faee;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-size:1rem;
    margin: 3px 20px 0 0;
    padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-nav .nav-link:hover {
    color: #FFFFFF;
    transform: scale(1.10);
}



/* Secundair Menu */
.secondary-menu {
    font-size: 0.875rem;
    border-bottom: 1px solid #eaeaea;
    min-height:50px;
}



/* Hero-sectie */
.hero-section {
    background-color: #e2e2e2;
}

.hero-section .display-4 {
    font-weight: 700;
    color: #1d3557;
}

.hero-section .lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Hero-sectie met afbeelding */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f1faee;
    overflow: hidden;
}

.bg-hero {
background-image: url('/static/img/herobg1.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
    background-attachment: fixed; /* 🔥 Parallax-effect */

  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow:scroll;
}

.bg-marcom {
background:#FF5571;
}

.bg-marcom-secondary {
background:#123D60;
}

.bg-hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* vult volledig het vlak */
  z-index: 0;               /* onder content */
}

.hero-section img {

    width: 100%;
    height: 100%;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    z-index: 3100; /* Zorg dat tekst boven de afbeelding staat */
}

.hero-section p {
    font-size: 24px;
    z-index: 1;
    margin-bottom: 30px;
}

.hero-section .btn {
    font-size: 18px;
    padding: 10px 20px;
    background-color: #FF5571;
    border: none;
    color: #fff;
    border-radius: 5px;
    z-index: 1;
}

.hero-section .btn:hover {
    background-color: #C71D73;
}

/* Gebruikersmenu Styling */
.user-menu {
    position: relative;
    z-index: 1150;
}

.user-menu img {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.user-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1200;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-width: 200px;
}

.user-menu .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    border-radius: 5px;
}

.user-menu .dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #1d3557;
}

/* Custom Tool Menu Styling */
.custom-tool-menu {
    background-color: #f8f9fa;
    border-bottom: 2px solid #457b9d;
    padding: 10px 0;
    z-index:100;
}

.custom-tool-menu .nav-link {
    color: #1d3557;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-tool-menu .nav-link:hover {
    background-color: #457b9d;
    color: #f1faee;
}

/* Mega Dropdown */
.mega-dropdown {
    min-width: 600px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.mega-dropdown h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

.mega-dropdown ul {
    padding-left: 0;
    list-style: none;
}

.mega-dropdown ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}

.mega-dropdown ul li a:hover {
    text-decoration: underline;
}

.category h5, .category a h5 {
    color: #ffffff;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
}

/* Responsiviteit voor het Megadropdown-menu */
@media (max-width: 768px) {
    .mega-dropdown {
        display: block;
        position: static;
        box-shadow: none;
        grid-template-columns: 1fr;
    }

    .mega-dropdown .category {
        margin-bottom: 20px;
    }
}


/* Aangepaste kleuren voor koppen */
/* Styling voor het intro-sectieblok */
#intro-section h2,
#intro-section .card-title {
    color: #457b9d !important;  /* Verandert de koppen naar de gewenste kleur */
}

/* Optioneel: Styling voor de paragraaftekst in het intro-sectieblok */
#intro-section p {
    color: #333;  /* Maakt de tekst donkerder voor betere leesbaarheid */

}

/* Styling voor de knop in het intro-sectieblok */
#intro-section .btn-primary {
    background-color: #457b9d;
    border-color: #457b9d;
}

#intro-section .btn-primary:hover {
    background-color: #356183;
    border-color: #356183;
}

.navbar .user-menu {
    margin-left: auto; /* Zorgt ervoor dat het gebruikersmenu naar rechts wordt geduwd */
    display: flex; /* Flexbox zorgt voor consistent uitlijnen */
    align-items: center; /* Verticale uitlijning */
}

.navbar .user-menu .nav-link {
    padding-right: 1rem; /* Optioneel: ruimte aan de rechterkant */
}

.navbar .user-menu img {
    width: 32px; /* Pas de grootte van de avatar aan */
    height: 32px;
    border-radius: 50%; /* Maak de avatar cirkelvormig */
    margin-right: 0.5rem; /* Optioneel: ruimte tussen de avatar en tekst */
}

.navbar .user-menu .dropdown-menu {
    right: 0; /* Zorgt ervoor dat de dropdown rechts uitgelijnd is */
    left: auto;
}

#intro-section h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

#intro-section p {
    font-size: 1rem;
    line-height: 1.6;
}

#intro-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container {
    max-width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }

  .play-button {
    font-size: 2.5rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

  .company-story .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
  }

  .company-story h2 {
    font-family: 'Montserrat', sans-serif;
  }

/* homepage carousel */
#homepage_logo_carousel {
    padding: 2rem 0;
    background-color: #FF5571;
    color: white;
}

#homepage_logo_carousel .carousel-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M4.5 0L0 4l4.5 4V5h3V3h-3V0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M3.5 0L8 4 3.5 8V5H0V3h3.5V0z'/%3E%3C/svg%3E");
}

#homepage_logo_carousel h2 {
    font-family: 'Montserrat', sans-serif;
}

/* Zorg ervoor dat afbeeldingen altijd goed schalen */
#homepage_logo_carousel img {
    max-width: 80px;
    height: auto;
}

/* Tekst moet goed leesbaar blijven */
#homepage_logo_carousel p {
    color: white;
    font-size: 0.875rem;
}

/* âœ… OPLOSSING: Op mobiel items onder elkaar tonen */
@media screen and (max-width: 768px) {
    #homepage_logo_carousel .carousel-item .d-flex {
        flex-direction: column; /* Zorg dat items onder elkaar staan */
        align-items: center;
    }

    #homepage_logo_carousel img {
        max-width: 60px; /* Maak de afbeeldingen kleiner op mobiel */
        margin-bottom: 10px;
    }

    #homepage_logo_carousel p {
        font-size: 0.75rem; /* Iets kleinere tekst op mobiel */
        text-align: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
        background-size: 10px 10px;
    }
}


/* Tools Overlay Menu met Scrolloptie */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    background-color: rgba(244, 244, 249, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 9999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    max-width: 1200px;
    max-height: 95vh;
    overflow-y: auto;
    text-align: center;
    animation: fadeIn 0.5s ease;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sluitknop */
.close-overlay {
    font-size: 1.5rem;
    padding: 5px 10px;
    width: 50px;
    height: 50px;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: fixed;
    right: 20px;
    top: 20px;
}

.close-overlay:hover {
    color: #FF5571;
    border-color: #FF5571;
    background: rgba(255, 255, 255, 0.1);
}

/* Tools Overlay Menu Stijlen */
#toolsOverlay .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 25px;
}

#toolsOverlay .col-md-3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

#toolsOverlay .col-md-3 h5 {
    color: #1d3557;
}

#toolsOverlay .col-md-3 .list-unstyled {
    flex-grow: 1;
}

#toolsOverlay .col-md-3 .btn-category {
    margin-top: auto;
    background-color: #1d3557;
    border-color: #1d3557;
    color: #fff;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 6px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#toolsOverlay .col-md-3 .btn-category:hover {
    background-color: #14233c;
    border-color: #14233c;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Responsiviteit */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1.2rem;
    }
    .overlay-content {
        max-width: 95%;
        max-height: 85vh;
    }
}

.list-unstyled {
font-size:1rem;
}

.list-unstyled a {
font-weight:500;
}


.card {
    border-radius: 8px;
    overflow: hidden;
}

.card-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: extra bold;
}

.card-body {
    padding: 20px;
}

.card-footer {
    background-color: #f8f9fa;
    font-size: 0.875rem;
}

.card-footer a {
    color: #FF5571;
    text-decoration: none;
    font-weight: bold;
}

/*pricing sectie*/
.pricing-section .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-section .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Zorgt ervoor dat alle kaarten even hoog zijn */
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.pricing-section .card-body {
    flex-grow: 1; /* Maakt de kaart flexibel zodat alle elementen goed worden verdeeld */
}

.pricing-section .card:hover {
    transform: translateY(-10px);
}

.pricing-section .card-header {
    font-size: 1.25rem;
    font-weight: extra bold;
    text-transform: uppercase;
    background-color: #f8f8f8; /* Lichtgrijze achtergrond voor headers */
    padding: 1rem;
    border-bottom: none;
}

.pricing-section .btn {
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 1rem;
    background-color:#FF5571;
    border-color: #FF5571;
    color:#FFF;
}

.pricing-section .btn:hover {
background-color: #C71D73;
}

.pricing-section .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-section .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Zorgt ervoor dat alle kaarten even hoog zijn */
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.pricing-section .card-body {
    flex-grow: 1; /* Maakt de kaart flexibel zodat alle elementen goed worden verdeeld */
}

.pricing-section .card:hover {
    transform: translateY(-10px);
}

.pricing-section .card-header {
    font-size: 1.25rem;
    font-weight: extra bold;
    text-transform: uppercase;
    background-color: #f8f8f8; /* Lichtgrijze achtergrond voor headers */
    padding: 1rem;
    border-bottom: none;
}

.pricing-section .btn {
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 1rem;
}


.user-menu img {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 10px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1d3557;
}

/* Tools Cards */
.tools-card {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    margin:10px;
}

.tools-card .card-header {
    padding: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: #1d3557 !important
}

.tools-card-body {
    padding: 20px;
}

.tools-card-text {
    color: #333333;
    margin-bottom: 15px;
}

.tools-card-list li {
    margin-bottom: 10px;
    color: #666666;
}


.tools-card .btn {
    font-size: 1rem;
    font-weight: bold;
    margin-top: auto;
    background-color: #FF5571;
    border: none;
}

.tools-card .btn:hover {
    background-color: #C71D73;
}

#admin-user-history h2 {
    color: #1d3557;
    font-weight: bold;
}

#admin-user-history .table {
    font-size: 0.9rem;
}

#admin-user-history .btn-link {
    padding: 0;
    font-weight: bold;
    text-decoration: none;
}

#admin-user-history .btn-link:hover {
    text-decoration: underline;
}

/* Hero sectie */
.landing-hero {
    min-height: 600px;
    background-color: #f4f4f9;
}

.onboarding-hero {
    min-height: 200px;
    background-color: #f4f4f9;
}
.tool-hero {
    min-height: 300px;
    background-color: #f4f4f9;
}

.category-tool-hero {
    min-height: 600px;
    background-color: #f4f4f9;
}

.tool-header {
padding:0;
}

.category-hero {
    min-height: 200px;
    background-color: #f4f4f9;
}

.admin-hero {
    min-height: 200px;
}
.user-hero {
    min-height: 250px;
    background-color: #f4f4f9;
    }

.tool-hero-confirm {
    min-height: 200px;
    background-color: #f4f4f9;
}
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-top:20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* Voordelen sectie */
.benefit-card {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.05);
}

/* Sticky footer */
.sticky-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1d3557;
    text-align: center;
}

.footer-item {
    padding: 10px;
    flex: 1;
    transition: transform 0.3s ease;
}

.footer-item.highlight {
    transform: translateY(-10px);
}

/* Pricing Hero Section */
.pricing-hero {
    background-color: #f4f4f9;
    border-bottom: 2px solid #eeeeee;
}

.pricing-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* ExtraBold */
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1d3557;
}

.pricing-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Light */
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-hero-benefits {
    list-style: none;
    padding:0;
}

/* Pricing Section */
.pricing-section {
    background-color: #f4f4f9;
    padding: 3rem 0;
}

.pricing-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: #333;
}


.fair-use-tooltip {
    text-decoration: underline;
    color: #FF5571;
    cursor: pointer;
}

.fair-use-tooltip i {
    margin-left: 5px;
}

/* Tooltip Styling */
.tooltip-inner {
    background-color: #FF5571;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.category-icon {
    width: 48px;
    height: 48px;
    margin; 0 auto !important;
    }

/* Algemene sectie styling */
.sectie {
    padding: 80px 0; /* Vergroot de algemene sectie-padding */
}

.bg-wit {
    background-color: #ffffff;
}

.bg-primary {
background-color:#0FA1CE;}

.sectie-titel {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px; /* Meer ruimte onder de titel */
}

.sectie-ondertitel {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px; /* Meer ruimte onder de ondertitel */
}

/* Branchekaarten */
.branche-kaart {
    background: #f8f9fa;
    padding: 30px; /* Meer ruimte binnen de kaart */
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px; /* Extra ruimte tussen de kaarten */
}

.branche-kaart:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.branche-icoon {
    font-size: 3.5rem; /* Groter icoon voor betere zichtbaarheid */
    color: #FF5571;
    margin-bottom: 20px;
}

.branche-titel {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.branche-tekst {
    font-size: 1.1rem;
    color: #555;
}

/* Extra ruimte tussen de rijen */
.row {
    margin-bottom: 50px; /* Meer verticale ruimte tussen de rijen */
}

/* CTA Sectie met rode achtergrond */
.cta-sectie {
    background-color: #FF5571; /* Rood, overeenkomend met voordelen-sectie */
    padding: 80px 0;
    color: white;
}

.cta-titel {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-tekst {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-sectie .btn-light {
    font-size: 1.3rem;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.cta-sectie .btn-light:hover {
    background-color: #f8f9fa;
    color: #d9534f;
    transform: scale(1.05);
}

/* Algemene stijlen voor de Oplossingen pagina */
.oplossingen-header {
    padding: 100px 0;
}

.oplossingen-titel {
    font-size: 2.8rem;
    font-weight: bold;
}

.oplossingen-subtekst {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Oplossing secties */
.oplossingen-sectie .oplossing {
    margin-bottom: 80px;
}

.oplossing-titel {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.oplossing-tekst {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.oplossingen-sectie img {
    width:100%;
    height:100%;
}

/* CTA-sectie */
.oplossingen-cta {
    background-color: #FF5571;
    padding: 80px 0;
}

.oplossingen-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.oplossingen-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.oplossingen-cta .btn-light {
    font-size: 1.3rem;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.oplossingen-cta .btn-light:hover {
    background-color: #f8f9fa;
    color: #d9534f;
    transform: scale(1.05);
}

/* Algemene stijlen voor de FAQ pagina */
.faq-header {
    background: url('https://via.placeholder.com/1600x600') center/cover no-repeat;
    padding: 100px 0;
}

.faq-titel {
    font-size: 2.8rem;
    font-weight: bold;
}

.faq-subtekst {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ-secties */
.faq-sectie {
    background-color: #f8f9fa;
}

.faq-categorie {
    margin-bottom: 50px;
}

.faq-categorie-titel {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FF5571;
}

/* Stijlen voor de accordion */


.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
}
.accordion-item {
border:none;
}

.accordion-button {
  background-color: #f9f9f9;
  color: #123D60;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem !important;
  box-shadow: none;
  transition: background-color 0.2s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #f1f5f9;
  color: #123D60;
  box-shadow: inset 0 -1px 0 #e0e0e0;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23123D60' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 11.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
}
/* CTA-sectie */
.faq-cta {
    background-color: #FF5571 !important;
    padding: 80px 0;
}

.faq-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.faq-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.faq-cta .btn-light {
    font-size: 1.3rem;
    padding: 12px 30px;
    border-radius: 8px;
}

/* Stijl FAQ Hero */
.faq-hero {
    background-color: #f8f9fa;
    padding: 40px 0;
    min-height:100px;
}

.faq-hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #212529;
}

.faq-hero p {
    font-size: 1.3rem;
    color: #6c757d;
}



.faq-hero img {
    max-width: 100%;
    border-radius: 10px;
}

/* Stijl Oplossingen Hero */
.oplossingen-hero {
      position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f1faee;
    overflow: hidden;
}

.oplossingen-hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #1d3557;
}

.oplossingen-hero p {
    font-size: 1.3rem;
    color: #6c757d;
}

.oplossingen-hero .btn-primary {
    font-size: 1.2rem;
    padding: 12px 24px;
    border-radius: 8px;
}

.oplossingen-hero img {
    width:100%;
    height:100%
}

/* Stijl Contact Hero */
.contact-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #212529;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #6c757d;
}

.contact-hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Stijl Contactformulier */
.contact-form {
    background-color: #ffffff;
}

.contact-form .card {
    border-radius: 10px;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
}

/* Contact CTA */
.contact-cta {
    background-color: #FF5571;
    padding: 60px 0;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.contact-cta .btn-light {
    font-size: 1.2rem;
    padding: 12px 24px;
    border-radius: 8px;
}

.admin-category-panel {
    width: 80%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.admin-category-title {
    text-align: center;
    font-size: 24px;
}

.category-form, .admin-category-list {
    margin-bottom: 20px;
}

.form-title, .list-title {
    font-size: 20px;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-top: 10px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.btn-submit {
    background-color: #28a745;
    color: white;
    border: none;
    display: block;
    width: 100%;
    text-align: center;
}

.btn-edit {
    background-color: #ffc107;
    color: black;
    border: none;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
    border: none;
}

.category-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 5px;
}

.category-table th, .category-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.category-table th {

}

.modal-content {
    border-radius: 8px;
}

.btn-cancel {
    background-color: #6c757d;
    color: white;
    border: none;
}

.btn-confirm-delete {
    background-color: #dc3545;
    color: white;
    border: none;
}
.btn-new-category {
    display: inline-block;
    margin-bottom: 15px;
    padding: 10px 15px;
    background-color: #17a2b8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.btn-new-category:hover {
    background-color: #138496;
}

.admin-tool-panel {
    width: 80%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.admin-tool-title {
    text-align: center;
    font-size: 24px;
}

.tool-form, .admin-tool-list {
    margin-bottom: 20px;
}

.form-title, .list-title {
    font-size: 20px;
    margin-bottom: 10px;
}

input, textarea, select {
    width: 100%;
    padding: 8px;
    margin: 5px 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.btn-new-tool {
    background-color: #17a2b8;
    color: white;
}

.btn-submit {
    background-color: #28a745;
    color: white;
    border: none;
    display: block;
    width: 100%;
}

.btn-edit {
    background-color: #ffc107;
    color: black;
    border: none;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
    border: none;
}

.tool-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 5px;
}

.tool-table th, .tool-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tool-table th {
}

.tool-table ul {
font-size:16px;
margin-left:10px;
}

.modal-content {
    border-radius: 8px;
}

.btn-cancel {
    background-color: #6c757d;
    color: white;
    border: none;
}

.btn-confirm-delete {
    background-color: #dc3545;
    color: white;
    border: none;
}
/* Stijlkeuze sectie */
.admin-style-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

/* Titel */
.admin-style-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1d3557;
    margin-bottom: 15px;
}

/* Inhoud wrapper */
.admin-style-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Label */
.admin-style-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Dropdown menu */
.admin-style-dropdown {
    width: 250px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

/* Knoppen container */
.admin-style-buttons {
    display: flex;
    gap: 10px;
}



.sticky-top {
    z-index: 1030; /* Zorgt dat het menu boven andere elementen blijft */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Voeg een subtiele schaduw toe */
    background-color: #1d3557; /* Zorg dat de achtergrond consistent blijft */
}


/* Stijlen alleen toepassen als de knop in de navbar zit */
.navbar #toolsDropdown {
    background-color: #FF5571; /* Primaire kleur */
    border: none;
    padding: 12px 20px;
    margin: 3px 15px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    position: relative;
    border-radius: 50px;
    color: white !important;
}

.navbar #toolsDropdown:hover {
    background-color: #C71D73;
    transform: scale(1.05);
}

.navbar #toolsDropdown:active {
    transform: scale(0.98);
}

.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

/* Voorkomen dat deze stijlen worden toegepast in het secundaire menu */
.secondary-menu #toolsDropdown {
    all: unset; /* Reset alle stijlen */
    color: inherit; /* Behoudt de standaard kleur */
    cursor: pointer;
    font-weight: normal !important; /* Voorkomt vetgedrukte tekst */
    }

/* Voorkomen dat alle links in het secundaire menu vetgedrukt worden */
.secondary-menu a {
    font-weight: normal !important;
    text-decoration: none; /* Optioneel: voorkomt onderstreping als dat niet gewenst is */
}

/* Sticky gerelateerde tools menu */
.related-tools {
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    z-index: 500;
}

/* Sticky effect */
.related-tools.sticky-top {
    position: sticky;
    top: 55px; /* Pas dit aan als je hoofdmenu een andere hoogte heeft */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navigatiebalk styling */
.tool-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
}

/* Tool links */
.tool-nav-item {
    display: inline-block;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight:300;
    text-decoration: none;
    color: #ff5571;
    border:1px solid #ff5571;
    border-radius: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.tool-nav-item:hover {
    background: #ff5571;
    color: white;
}

/* Actieve tool styling */
.tool-nav-item.active {
    background: #0056b3;
    color: white;
    font-weight: bold;
}

.text-light {
font-weight:normal;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

.terms-container h1 {
font-size:24px;
}

.terms-container h2 {
font-size:20px;
font-weight:bold;
}

.terms-header {
    text-align: center;
    margin-bottom: 20px;
}

.terms-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.terms-update-date {
    font-size: 14px;
    color: #777;
}

.terms-body {
    font-size: 14px; /* Standaardgrootte voor alle tekst binnen terms */
    color: #555;
}

.terms-body p,
.terms-body ul {
    font-size: 14px; /* Gelijktrekken van paragrafen en lijsten */
}

.terms-list {
    padding-left: 20px;
    list-style-type: disc;
}

.terms-list li {
    font-size: 18px; /* Consistente grootte met paragrafen */
    margin-bottom: 8px;
}

.terms-link {
    color: #007bff;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.terms-disclaimer {
    font-size: 16px;
    font-weight: bold;
    color: #d9534f; /* Opvallende kleur voor disclaimer */
    margin-top: 20px;
}

#user-profile {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
#user-profile .row {
margin-bottom:0;
}

.profile-input {
    border-radius: 6px;
        font-size: 16px;
}

.profile-btn .btn {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
}

.profile-btn:hover {
    background-color: #0056b3;
}

.secondary-menu .btn {
padding:8px 12px;
margin-top:1px;
font-size:14px;
border:1px solid #ddd;
}

.sponsored-content {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
    display:block; 
}
.sponsored-content img {
    max-width: 100%;
    min-height: 50px;
}

/*stijlen die divs verbergen op mobiel */
@media screen and (max-width: 768px) {
    .hidden-on-mobile {
        display: none !important;
    }
}

#marcomgpt_uitleg h2 {
font-weight:800;
}

/* âœ… Styling voor de credits sectie */
.credits-section {
    background-color: #f8f9fa; /* Lichtgrijze achtergrond */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.credits-section h4 {
    font-size: 1.25rem;
    color: #FF5571; /* Rode kleur, passend bij de website */
    font-weight: bold;
}

.credits-count {
    font-size: 1.75rem;
    font-weight: bold;
    color: #343a40; /* Donkergrijze tekst */
    margin-bottom: 10px;
}

.credits-section p {
    font-size: 1rem;
    color: #6c757d; /* Lichte tekstkleur */
    margin-bottom: 15px;
}

.credits-btn {
    background-color: #28a745; /* Groen, positieve CTA */
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.credits-btn:hover {
    background-color: #218838; /* Donkerdere groene kleur bij hover */
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
    display: none;
}
.cookie-banner button {
    margin: 5px;
}

.cookie-banner p {
font-size:0.9rem;
color:#FFFFFF;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

/*Pricing */
 .pricing-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
        }
        .pricing-tabs {
            display: flex;
            border-bottom: 2px solid #e0e0e0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        .pricing-tab {
            padding: 10px 20px;
            cursor: pointer;
            background-color: #EAEAEA;
            color: #123D60;
            transition: all 0.3s;
        }
        .pricing-tab.active {
            background-color: white;
            color: #A70E48;
            box-shadow: inset 0 -3px 0 #A70E48;
        }
        .toggle-switch {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
        }
        .switch input { display: none; }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: #A70E48;
        }

        input:checked + .slider:before {
            transform: translateX(24px);
        }

        .pricing-card {
            transition: transform 0.3s, box-shadow 0.3s;
            padding: 30px;
            border-radius: 12px;
            background-color: white;
            border: 1px solid #e0e0e0;
            margin-top: 20px;
            position: relative;
            text-align:center;
        }
        .pricing-card:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .price {
            font-size: 4.5rem;
            font-weight: bold;
            color: #123D60;
        }

.price-euro {
        font-weight:light;
        font-size:1rem;
        }
.price-month {
        font-weight:light;
        font-size:1rem;
        }

.euro-symbol {
    font-size: 0.6em;
    color: grey;
    vertical-align: super;
    margin-right: 2px;
    font-weight: 300; /* Lichter gewicht, probeer 100, 200 of 300 voor nog lichter */
}


        .pricing-card ul {
            margin-top: 15px;
            padding-left: 0;
            list-style: none;
            font-size:0.85rem
        }
        .pricing-card ul li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            color: #555;
        }
        .pricing-card ul li::before {
            content: "";
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #A70E48;
            margin-right: 8px;
        }

.privacy-container h1 {
font-size:24px;
}

.privacy-container h2 {
font-size:20px;
font-weight:bold;
}

.privacy-header {
    text-align: center;
    margin-bottom: 20px;
}

.privacy-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.privacy-update-date {
    font-size: 14px;
    color: #777;
}

.privacy-body {
    font-size: 14px; /* Standaardgrootte voor alle tekst binnen terms */
    color: #555;
}

.privacy-body p,
.privacy-body ul {
    font-size: 14px; /* Gelijktrekken van paragrafen en lijsten */
}

.privacy-list {
    padding-left: 20px;
    list-style-type: disc;
}

.privacy-list li {
    font-size: 18px; /* Consistente grootte met paragrafen */
    margin-bottom: 8px;
}

.privacy-link {
    color: #007bff;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.privacy-disclaimer {
    font-size: 16px;
    font-weight: bold;
    color: #d9534f; /* Opvallende kleur voor disclaimer */
    margin-top: 20px;
}

.uploaded-file-list {
    padding: 0;
    list-style: none;
    width:75%;
}

.uploaded-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.file-name {
    flex-grow: 1;
}

.delete-form {
    margin-left: 10px;
}

.tool-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tool-title {
    font-size: 28px;
    font-weight: bold;
}

.info-icon {
    cursor: pointer;
    display: inline-block;
    color:#FF5571;
    font-size:0.85rem;
    padding-right:25px;
}

.info-icon-img {
    width: 64px; /* âœ… Groter icoon */
    height: 64px;
    vertical-align: middle;
}

/* âœ… Stijlen voor de tool-instructie pop-up */
/* Pop-up verbeterd */
/* Donkere overlay zoals uploadModal */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

/* Actieve staat */
.popup-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* Popup zelf */
.popup-centered {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 700px;
    max-width: 95%;
    animation: fadeIn 0.3s ease-in-out;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Popup header */
.popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.popup-icon {
    font-size: 2rem;
    color: #FF5571;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1d3557;
}

.popup-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Sluitknop */
.popup .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.popup .close:hover {
    color: #FF5571;
}



/* Voordelen container */
.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
}

/* Individueel voordeel */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    background: white;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

/* Voordeel icoon */
.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #28a745; /* Groen voor een positieve uitstraling */
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Voordeel tekst */
.benefit-text {
    flex-grow: 1;
}

/* Hover effect */
.benefit-item:hover {
    transform: scale(1.02);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.features {
            text-align: left;
            margin-bottom: 20px;
        }

        .features p {
            margin: 10px 0;
            padding-left: 30px;
            position: relative;
        }

        .features p::before {
            content: "✔";
            color: #FF5571;
            font-weight: bold;
            position: absolute;
            margin-right:10px;
            left: 0;
        }

        .cta {
            margin-top: 20px;
        }

        .cta a {
            text-decoration: none;
            color: #FF5571;
            font-weight: bold;
        }

        .cta a:hover {
            text-decoration: underline;
        }


 /* Algemene stijl voor het secundaire menu */
.secondary-menu {
    background-color: #f8f9fa; /* Lichtgrijze achtergrond */
    border-bottom: 1px solid #ddd; /* Subtiele scheiding */
}

/* âœ… Standaard stijl voor alle navigatielinks binnen het secundaire menu */
.secondary-menu .nav-link,
.secondary-menu #toolsDropdown {
    color: #6c757d; /* Donkergrijze tekstkleur */
    font-size: 14px;
    padding: 8px 12px;
    transition: color 0.3s ease-in-out;
    text-decoration: none; /* Voorkomt onderstreping */
    display: inline-block; /* Zorgt voor gelijke padding en uitlijning */
}

/* âœ… Hover-effect voor alle links (inclusief Home en Tools) */
.secondary-menu .nav-link:hover,
.secondary-menu #toolsDropdown:hover {
    color: #0056b3; /* Blauwe hover kleur */
    text-decoration: underline;
}

/* âœ… Actieve link (indien van toepassing) */
.secondary-menu .nav-link.active,
.secondary-menu #toolsDropdown.active {
    font-weight: bold;
    color: #004085;
}
/* âœ… Mobiele optimalisatie */
@media (max-width: 768px) {
    .secondary-menu .navbar-nav {
        text-align: center;
    }

    .secondary-menu .nav-link,
    .secondary-menu #toolsDropdown {
        display: block;
        padding: 10px;
        font-size: 16px; /* Grotere tekst voor betere leesbaarheid */
    }
}

/* Zorg dat alle items netjes gecentreerd zijn */
#secondaryNavbar .navbar-nav {
    display: flex;
    align-items: center;
}

/* Specifieke fix voor het logo */
.logo-link img {
    height: 30px;
    display: block;
}

.list-group-item {
    font-size: 16px;
    padding: 12px;
}

.list-group-item.active {
    background-color: #FF5571;
    border-color: #FF5571;
    color: white;
}

.list-group-item:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color:#FF5571;
}

/* ✅ Upload Modal - Verborgen bij laden */
#uploadModal {
    display: none; /* Standaard verborgen */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Donkere overlay */
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: hidden;
}

/* ✅ Modal verschijnt wanneer 'active' class wordt toegevoegd */
#uploadModal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* ✅ Modal inhoud */
#uploadModal .modal-content {
    background: #ffffff;
    padding: 30px;
    width: 50%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

/* ✅ Sluitknop */
#uploadModal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

#uploadModal .close:hover {
    color: #ff5571;
}

/* ✅ Fade-in animatie */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subscription-management {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        .subscription-management form {
            flex: 1;
        }

      .credits-section {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

.admin-container {
background-color: #F8F9FA; /* Subtiele achtergrondkleur */
            padding: 10px;
            margin-bottom: 20px;
            border-bottom: 1px solid #E0E0E0;
}
 .admin-nav {

        }
.admin-nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.admin-nav ul li a,
.admin-nav ul li span.nav-link {
    color: #A70E48; /* Secundaire kleur voor tekst */
    text-decoration: none;
    font-weight: 300;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
    display: inline-block;
}

.admin-nav ul li a:hover {
    background-color: #E0E0E0; /* Lichte hoverkleur */
    color: #123D60; /* Donkerblauwe kleur voor actieve items */
}

/* Disabled link (span.nav-link.disabled) */
.admin-nav ul li .nav-link.disabled {
    color: #999; /* Grijze tekstkleur */
    pointer-events: none; /* Niet klikbaar */
    opacity: 0.6;
    cursor: not-allowed;
    background-color: transparent;
}

/* Optional: hover effect uitschakelen voor disabled */
.admin-nav ul li .nav-link.disabled:hover {
    background-color: transparent;
    color: #999;
}

.dashboard-table {
    margin-top: 20px;
}



/* Blok styling */
.dashboard-block {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
    border: 1px solid #E0E0E0;
}

.dashboard-block:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-block h3 {
    color: #123D60;
    margin-bottom: 15px;
}

.dashboard-block ul {
margin-left:20px;
}

.dashboard-block ul li a {
    text-decoration: none;
    color: #A70E48;
    transition: color 0.2s;
    font-weight:300;
    font-size:0.9rem;

}

 .dashboard-block ul li a:hover {
            color: #123D60;
        }

.flashes-wrapper {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

/* Algemene flash styling */
.alert {
  width: 100%;
  padding: 1rem 2rem;
  margin: 0;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Kleurvariaties */
.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
}


.branche-icoon {
  font-size: 3rem;          /* Grootte van het icoon */
  color: #FF5571;           /* Roze kleur uit je huisstijl */
  margin-bottom: 1rem;
  display: block;
}

/* Alleen de links met class 'menu-align' */
.menu-align {
    padding-top: 16px !important;
}

.secondary-meu .logo-link {
padding:0;
}

.tool-benefits-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tool-benefit-label {
  background-color: #f0f4f8;
  color: #1a1a1a;
  border: 1px solid #d0d7de;
  border-radius: 30px;
  font-size: 0.85rem;
  padding: 4px 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.tool-benefit-label:hover {
  background-color: #e2e8f0;
}

.section-ai-assistent li,
.section-ai-assistent ul li,
.section-ai-assistent ul li * {
  font-size: 1rem !important;
  line-height: 1.6;
  color: #212529;
}


.section-ai-assistent li {
  all: unset;
  display: list-item;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #212529;
  margin-bottom: 1rem;
}

.section-ai-assistent h2 {
  font-size: 2.25rem;
  color: #123D60;
  font-weight: 600;
}

.section-ai-assistent .lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: #495057;
}

.section-ai-assistent ul {
  padding-left: 0;
}

.section-ai-assistent li {
  font-size: 1rem;
  line-height: 1.6;
}

.section-ai-assistent .btn-primary {
  background-color: #FF5571;
  border-color: #FF5571;
}

.section-ai-assistent .btn-outline-dark {
  border-color: #123D60;
  color: #123D60;
}

.section-ai-assistent .btn-outline-dark:hover {
  background-color: #123D60;
  color: #fff;
}

.section-ai-assistent img {
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.section-ai-assistent img:hover {
  transform: scale(1.01);
}

.section-ai-assistent button {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bg-success {
  background-color: #fd7e14 !important;
}

/* Primair merkbutton (oranje stijl) */
.btn-marcom {
border: 2px solid #FF5571;
  background-color: #FF5571;
  color: #fff;
  border: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-marcom:hover,
.btn-marcom:focus {
  background-color: #C71D73;
  color: #fff;
  text-decoration: none;
}

/* Outline variant */
.btn-outline-marcom {
  border: 2px solid #FF5571;
  color: #FF5571;
  background-color: transparent;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-outline-marcom:hover,
.btn-outline-marcom:focus {
  background-color: #FF5571;
  color: #fff;
  text-decoration: none;
}

#searchModalTop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1170; /* Hoger dan sticky-top (1020) */
  width: 100%;
  height: 100vh;
  padding: 2rem;
  overflow-y: auto;
}

/* Slide van boven */
.modal.slide-down .modal-dialog {
  transform: translateY(-100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.modal.slide-down.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

/* Blur-effect op achtergrond */
.modal-backdrop.show {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.3); /* optioneel donker */
}

/* Verwijder marge/padding van modal-wrapper */
#searchModalTop .modal-dialog {
  max-width: 100%;
  margin: 0;
  position:fixed;
  z-index:1500;
}

/* Zoekveld tegen bovenrand */
#searchModalTop .modal-content {
  border-radius: 0;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.modal.fade.slide-down.show .modal-dialog {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.85); /* licht dekking */
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000; /* zorg dat dit boven alles ligt */
}


/* Inschuif van boven met blur */
.modal.slide-down .modal-dialog {
  transform: translateY(-100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  background: white;
  z-index: 5561;
}

.modal.slide-down.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

/* Blur op de rest van het scherm */
.modal-backdrop.show {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.3);
}

.category-link.active {
  border-top: 3px solid #FF5571;
  background-color: #f8f9fa;
  border-radius: 6px;
}

.tool-group.border-top-highlight {
  border-top: 3px solid #FF5571;
  padding-top: 1rem;
}

.card-title a:hover {
  color: #FF5571;
}

a.text-muted.small {
  text-decoration: underline;
  color: #FF5571;
  font-weight:300;
}

a.text-muted.small:hover {
  text-decoration: underline;
  color: #FF5571;
  font-weight:300;
}

  .shake {
    animation: shake 0.4s;
  }

  @keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
  }



.custom-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: none;
  border: none;
}

.carousel-control-prev.custom-carousel-control {
  left: -2rem;
}

.carousel-control-next.custom-carousel-control {
  right: -2rem;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  opacity: 1;
  margin: 0 6px;
  transition: background-color 0.3s ease;
  border: none;
}

.carousel-indicators .active {
  background-color: #FF5571;
}

#carouselOplossingen .carousel-item {
    min-height: 380px;

}


@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.badge-marcom {
  text-decoration: none !important;
  cursor: pointer;
  background-color: #FF5571;
  color: #fff;
  font-size:0.85rem;
  border: none;
  border-radius: 999px; /* ronde hoeken zoals badges */
  font-weight: 500;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-align: center;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.badge-marcom:hover,
.badge-marcom:focus {
  background-color: #C71D73;
  color: #fff;
  text-decoration: none;
}

.badge-marcom-outline {
  text-decoration: none !important;
  cursor: pointer;
  background-color: transparent;
  font-size:0.85rem;
  color: #FF5571;
  border: 2px solid #FF5571;
  border-radius: 999px;
  font-weight: 300;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.badge-marcom-outline:hover,
.badge-marcom-outline:focus {
  background-color: #FF5571;
  color: #fff;
  text-decoration: none;
}

.status-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}
.status-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.status-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #dcdcdc;
  transition: 0.4s;
  border-radius: 28px;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
}
.status-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.status-switch input:checked + .status-slider {
  background-color: #28a745; /* exclusief groen */
}
.status-switch input:checked + .status-slider:before {
  transform: translateX(22px);
}

.admin-menu > li {
  display: inline-block;
  position: relative;
  margin-right: 1rem;
}
.admin-menu a {
  text-decoration: none;
  color: #123D60;
  font-weight: 500;
}
.dropdown .submenu {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  padding: 0.75rem 1rem;
  list-style: none;
  z-index: 1000;
  width: 300px; /* 🔧 Vergroot van ±150px naar 300px */
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.submenu li {
  padding: 0.5rem 0;
  white-space: nowrap;
}
.dropdown:hover .submenu {
  display: block;
}
.submenu li {
  padding: 0.25rem 0;
}

   .star-rating {
      display: inline-flex;
      flex-direction: row-reverse;
      justify-content: flex-end;
    }
    .star-rating input {
      display: none;
    }
    .star-rating label {
      font-size: 1.8rem;
      color: #ccc;
      cursor: pointer;
      transition: color 0.2s;
      padding: 0 2px;
    }
    .star-rating input:checked ~ label,
    .star-rating label:hover,
    .star-rating label:hover ~ label {
      color: #f7c948;
    }

.border-primary {
    border-color: #ff5571;

}
.flow-summary-title {
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
  color: #123D60;
}


.flow-step-box {
  background-color: #fff;
  transition: box-shadow 0.2s ease;
}

.flow-step-box:hover {
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.05);
}

.flow-step-header h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #123d60;
}

.flow-step-output {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.formatted-output h4 {
  font-size: 1.15rem;
  color: #123D60;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.formatted-output br {
  display: block;
  margin-bottom: 0.4rem;
}

.flow-summary-section {
  text-align: left;
}

.flow-step-output,
.formatted-output {
  text-align: left;
  line-height: 1.5;  /* compacter dan de eerdere 1.7 */
  font-size: 1rem;
  color: #333;
}

.formatted-output h4 {
  text-align: left;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #123D60;
}

.locked-card {
  opacity: 0.6;
  pointer-events: none;
}

.locked-card .locked-action {
  pointer-events: auto;
}


.formatted-output br {
  margin-bottom: 0.25rem;
}

/* 🔒 Grijstint voor tools die niet beschikbaar zijn */
.locked-tool {
  opacity: 0.7;
  filter: grayscale(70%);
  position: relative;
}

/* ❌ Voorkomt klikken als je tools echt wilt blokkeren */
.locked-tool a.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.locked-tool-toolpage {
  opacity: 0.8;
  filter: grayscale(80%);
  position: relative;
}

.locked-tool-toolpage:hover {
  opacity: 0.8;
  filter: grayscale(80%);
  position: relative;
  background: none !important;
  cursor:default;
}


/* ✅ Hoverkleur behouden voor toegestane tools */
.hover-bg:hover {
  background-color: #f0f0f0;
}

/* Zorg dat hover-effect bij tools even sterk is als bij marketingflows */
.hover-bg {
  transition: all 0.2s ease-in-out;
  border-radius: 8px;           /* zelfde radius als flows */
}

.hover-bg:hover {
  background-color: #f1f5f9;    /* zelfde achtergrondkleur als flows */
  transform: translateY(-2px);  /* optioneel subtiel “lift” effect */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08); /* idem flows */
}

.badge-toegang {
  font-size: 0.65rem;
  padding: 0.3em 0.6em;
  font-weight: 500;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
  z-index:2000;
}

.badge-beschikbaarheid {
  font-size: 0.75rem;
  background-color: #dee2e6;
  color: #495057;
  padding: 0.35em 0.6em;
  border-radius: 0.5rem;
  white-space: nowrap;
  font-weight:300;
}

.locked-tool {
  opacity: 0.6;
  pointer-events: auto;
  cursor: not-allowed;
}

.badge-beschikbaarheid {
  background-color: #f8d7da;
  color: #721c24;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}


.fade-in {
  opacity: 0;
  animation: fadeIn 0.4s ease-out forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Forceer de modal en backdrop boven alles */
.modal {
    z-index: 1080 !important;
}
.modal-backdrop {
    z-index: 1079 !important;
}

/* Zet vaste header/layers lager dan modal */
header,
.navbar,
.offcanvas,
.fixed-top,
#main-menu,  /* pas deze selector aan indien nodig */
#user-menu   /* idem als je een apart gebruikersmenu hebt */
{
    z-index: 1040 !important;
}

.tool-disabled-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 245, 249, 0.8); /* lichtgrijs met transparantie */
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.overlay-message {
  background: white;
  padding: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .ai-output-card {
      background: #fff;
      border-radius: 0.75rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 2rem;
      margin-top: -2rem;
    }
    .ai-output-card h2 {
      color: #123D60;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .ai-output {
      line-height: 1.7;
      color: #333;
    }
    .ai-output h1, .ai-output h2, .ai-output h3 {
      color: #123D60;
      margin-top: 1.2rem;
    }
    .ai-output ul {
      margin-left: 1.5rem;
    }
    .export-buttons .btn {
      margin: 0.25rem;
    }
    .feedback-block {
      background: #F1F5F9;
      border-radius: 0.75rem;
      padding: 1.5rem;
      margin-top: 2rem;
    }
    .feedback-block h5 {
      color: #123D60;
      margin-bottom: 1rem;
    }
    .star-rating input {
      display: none;
    }
    .star-rating label {
      font-size: 2rem;
      color: #ccc;
      cursor: pointer;
    }
    .star-rating input:checked ~ label,
    .star-rating label:hover,
    .star-rating label:hover ~ label {
      color: #FF5571;
    }

/* Strakkere styling voor checkboxes en radio buttons */
.custom-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0;
    margin-right: 0.5rem;
    cursor: pointer;
}

.custom-check-label {
    font-weight: normal; /* geen bold */
    color: #333;
    cursor: pointer;
    margin-top:-10px;
}

.custom-select,
.custom-textarea,
.custom-input {
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    padding: 0.5rem 0.75rem;
}

.custom-select:focus,
.custom-textarea:focus,
.custom-input:focus {
    border-color: #123D60;
    box-shadow: 0 0 0 0.1rem rgba(18, 61, 96, 0.25);
}


#previousStepResult p {
    margin: 0 0 0.4rem 0; /* minder margin tussen paragrafen */
    line-height: 1.4;     /* compacter regelhoogte */
    font-size: 0.85rem;   /* kleinere tekst */
}
#previousStepResult strong {
    font-weight: 600;     /* subtielere bold */
}
#previousStepResult hr {
    margin: 0.5rem 0;     /* compactere hr spacing */
}

.mega-menu-dropdown {
  position: absolute;
  top: 0;        /* direct onder de navbar */
  left: 0;
  width: 100%;
  background: #123D60;
  z-index: 3040;
  /* animatiestates */
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

.mega-menu-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}


.circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2rem;
}
.hover-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.bg-accent {
  background-color: #FF5571 !important;
  color:#ffffff;
}

.marketingflows {
  background: linear-gradient(180deg, #123D60 0%, #0E2F4A 100%);
  color: #fff;
}
.marketingflows .card {
  background: rgba(255, 255, 255, 1);
  border: none;
}
.marketingflows .card h5,
.marketingflows .card p {
  color: #fff;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.steps-line::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e9ecef;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
}

.bg-dark-gradient {
  background: linear-gradient(180deg, #123D60 0%, #0E2F4A 100%);
}
.bg-dark-gradient .circle-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg-dark-gradient .hover-up:hover {
  transform: translateY(-4px);
  transition: all 0.2s ease-in-out;
  background: rgba(255, 255, 255, 1) !important;
}

.nav-pills .nav-link.active {
  background-color: #FF5571;
  color: #fff !important;
}
.nav-pills .nav-link {
  border: 1px solid #dee2e6;
  color: #123D60;
  margin: 0 0.3rem;
}
.nav-pills .nav-link:hover {
  background-color: #f8f9fa;
   color: #123D60;
}

/* ===== NAV-TABS REWORK ===== */
#solutionsTab {
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 2rem;
}

#solutionsTab .nav-link {
  background: none;
  border: none;
  border-radius: 0;
  font-weight: 600;
  color: #123D60;
  padding: 0.75rem 1.5rem;
  position: relative;
  transition: color 0.2s ease, border-color 0.2s ease;
}

#solutionsTab .nav-link:hover {
  color: #FF5571;
}

#solutionsTab .nav-link.active {
  color: #FFFFFF;
  background: #FF5571;
}

#solutionsTab .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background-color: #FF5571;
  border-radius: 2px 2px 0 0;
}

#solutionsTab .nav-item {
  margin: 0 0.75rem;
}
.accordion-button {
  background-color: #ffffff;       /* effen wit */
  font-weight: 600;
  color: #123D60;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.accordion-button:not(.collapsed) {
  background-color: #f1f5f9;       /* lichtgrijs bij openklappen */
  color: #123D60;
  box-shadow: inset 0 -2px 0 #FF5571; /* subtiel accent onderaan */
}
.accordion-item {
  border: none;
  border-radius: 12px !important;
  overflow: hidden;
}
.accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
}
textarea.form-control {
  border-radius: 8px;
}

#refineAccordion {
  margin-top: -50px; /* schuift hem ca. 40px omhoog */
}

#withdrawalCheck {
font-weight:normal;}