
/* Import Google Font Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Manrope:ital,wght@0,200..800;1,200..800&display=swap');

/* Import Font Awesome for Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

@font-face {
    font-family: 'Ekiticons';
    src: url('/fonts/elementskit.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

.icon {
    font-family: 'Ekiticons';
    font-size: 4rem;
    color: #70D3F0;
    margin: 10px;
}


/* General Styling */

/* Reset HTML and Body */
html, body {
    margin: 0;
}

/* Set up a flex layout for the whole page */

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    margin-left: 30px;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #333333;
}

.logo img {
    height: auto;
    max-width: 100%;
    width: auto;
    max-height: 40px; /* Adjust this to limit the maximum height */
}

.headerp {
    margin:0px;
}

.headerp + p,
.headerp + ul {
    margin-top: 0;
}

.legep{
    display:none;
}


.main-nav {
    display: flex;
    gap: 1rem;
}

.main-nav a {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 1em;
    color: #000;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
    color: #70D3F0;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .logo img {
        height: 40px;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 0 0 8px 8px;
    }

    .main-nav.active {
        display: flex;
        z-index:3;
    }

    .main-nav a {
        padding: 0.75rem;
        margin: 0.25rem 0;
    }

    .footer-section {
        flex-direction: column;
        align-items: center;
    }
}

.pagination-wrapper {
    min-height: 40px; /* or whatever height fits your spacing */
    margin-top: 20px;
    text-align: center;
}

.pagination {
    display: inline-block;
}

.pagination a, .pagination span {
    margin: 0 5px;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    background-color: #f4f4f4;
    border-radius: 4px;
}

.pagination .active {
    background-color: #333;
    color: #fff;
}

.pagination a:hover {
    background-color: #ddd;
}

.pagination .active {
    background-color: #333333;
    color: #ffffff;
    pointer-events: none;
}


@media (min-width: 768px) and (max-width: 1300px) {
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        background-color: #ffffff;
        padding: 1rem;
    }

    .main-nav a {
        padding: 0.5rem 0;
        display: block;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .main-nav {
        gap: 0px; /* reduce spacing between items */
    }
}


/* expired job message start*/
.expired-job-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #ED1C24;
    padding: 12px;
    margin: 15px auto; /* Centered with margin:auto */
    border-radius: 8px;
    font-family: 'Poppins', Sans-serif;
    font-size: 1.1em; /* Slightly larger text */
    font-weight: bold; /* Bold text */
    text-align: center;
    box-shadow: 0 4px 8px #e4e4e4;
    transition: transform 0.2s ease;
    width: 90%;
}
.expired-job-message a {
    color: #ED1C24;
    font-weight: 600;
    text-decoration: none;
}

.expired-job-message a:hover {
    text-decoration: underline;
}

.expired-job-message:hover {
    transform: scale(1.02);
}
/* expired job message end

/*footer start*/

.footer-section {
  background-color: #f8f8f8;
  padding: 60px 20px 30px;
  font-size: 16px;
  color: #333;
}

.footer-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.footer-column {
  flex: 1 1 30%;
}

.footer-logo {
  max-height: 35px;
  width: auto;
  margin-bottom: 16px;
}

.footer-description {
    line-height: 1.6;
    color: #888;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: bold;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 14px;
    background-color: #70D3F0;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
    width: -webkit-fill-available;
}

.footer-button:hover {
  background-color: #00AEEF;
}

.footer-bottom {
  max-width: 1040px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-socials a {
  color: #70D3F0;
  font-size: 18px;
  margin-left: 16px;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #00AEEF;
}

.footer-backtotop {
  margin-left: auto;
  font-size: 14px;
  text-decoration: none;
  color: #70D3F0;
  font-weight: bold;
}

.footer-backtotop:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-socials {
    margin-top: 10px;
  }

  .footer-backtotop {
    margin: 0;
  }
}
/* footer eind*/


/*front-page 3jobs section start */

.banner-section-home {
    position: relative;
    width: 100%;
    min-height: 500px;
    margin: 0;
    padding: 0 5%;
    background-color: #f8f9fa;
    background-position: center center;
    background-size: cover;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}

.banner-section-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Overlay color */
    opacity: 0.0; /* Transparency level */
    transition: opacity 0.3s; /* Smooth transition for hover */
    z-index: 1; /* Ensure the overlay is above the background */
}

/*.banner-section-home:hover::before {
    opacity: 0.3; /* Slightly darker on hover 
}*/

.banner-section-home * {
    position: relative; /* Make content appear above the overlay */
    z-index: 2;
}

.home {
    background-image: url("../images/home.jpg");
    min-height: 740px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 40px;
    padding: 40px 5%;
    color: #222;
}

/* banner niet home */
.banner-section {
    position: relative;
    width: 100%; /* Use 100% instead of 100vw to avoid horizontal overflow */
    min-height: 250px; /* Adjust the height as needed */
    margin: 0;
    padding: 0 5%; /* Control left and right spacing */
    background-color: #f8f9fa;
    background-position: center center;
    background-size: cover;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center */
    align-items: flex-start; /* Align slightly to the left */
    box-sizing: border-box; /* Ensure padding is included in the width */
    overflow: hidden; /* Prevent any overflow */
}

.overons {
    background-image: url("../images/fruittuinen-banner.jpg");
}

.opdrachtgevers {
    background-image: url("../images/opdrachtgevers.jpg");
}

.contact {
    background-image: url("../images/fruittuinen28.jpg");
}

.banner-section h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
}

.banner-section-home .button {
    background-color: #70D3F0;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: fit-content;
    min-width: 180px;
    text-align: center;
    display: inline-block;
}

.banner-section-home .button:hover {
  background-color: #00AEEF;
}


@media (max-width: 915px) {
  .banner-section h1, .heading {
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0; /* optional: helps in flexbox layouts */
    hyphens:auto;
  }
}

.banner-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-top: 10px;
}


.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333; /* Overlay color */
    opacity: 0.5; /* Transparency level */
    transition: opacity 0.3s; /* Smooth transition for hover */
    z-index: 1; /* Ensure the overlay is above the background */
}

/*.banner-section:hover::before {
    opacity: 0.3; /* Slightly darker on hover 
}*/

.banner-section * {
    position: relative; /* Make content appear above the overlay */
    z-index: 2;
}
/* banner niet home eind */

/* Jobs section next to the banner title home start */
.frontblock-jobs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 470px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    padding-bottom: 26px;
    padding-top: 20px;
}


/* Style for the job cards */
.frontblock-jobs .opdracht-card {
    background-color: rgba(255, 255, 255);
    border: 0px;
    padding: 16px 16px 0 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px #000000;
    transition: transform 0.2s ease;
    min-height: fit-content;
    color: #333;
    width: 55%;
}

.frontblock-jobs .opdracht-card:hover {
    transform: scale(1.02);
}

.frontblock-jobs .deadline-highlight {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #333333;
}

.frontblock-jobs .opdracht-card-details {
    font-size: 0.9em;
    margin-bottom: 4px;
    color: #333333;
}

.frontblock-jobs  .opdracht-title {
    font-weight: bold;
    font-size: 1.2rem;
    background-color: #ffffff;
    pointer-events: auto;
}

.frontblock-jobs .opdracht-title a {
    color:#00AEEF;
    text-decoration: none;
    display: block;
    width: 100%;
    height:100%;
}

.frontblock-jobs .opdracht-title:hover {
    text-decoration: underline;
    color:#00AEEF;
}

.frontblock-heading {
    text-align: center;
    color:#023a51;
}

.frontblock-heading strong {
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-block;
    padding: 0 12px 0 12px;
    margin: 0;
}

@media (max-width: 768px) {
    .frontblock-heading {
        text-align: center;
    }
}


/* Banner h1 and paragraph */
.banner-section-home h1 {
    max-width: 600px;
    font-size: 3em;
    line-height: 1.2;
    color: #023a51;
    margin: 0;
}

.banner-section-home p {
    color: #023a51;
    font-size: 1em;
    padding: 15px;
    margin: 0;
}

/* Button style in banner */
.banner-section-home a.button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: #C53543;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.block01-button:hover {
  background-color: #00AEEF;
}

/* Mobile styles */
@media (max-width: 916px) {
    .banner-section-home {
        flex-direction: column;
        align-items: center;
        text-align: left;
        min-height: 900px;
    }
    

    .banner-section-home h1, .banner-section p {
        max-width: 100%;
        color: #ffffff;
    }

    .frontblock-jobs {
        max-width: 100%;
        margin-top: 30px;
        width: 100%;
        gap: 12px;
    }

    .frontblock-jobs .opdracht-card {
        width: 100%;
        box-sizing: border-box;
        height:195px;
    }

    .banner-sectio-home a.button {
        margin-bottom: 40px;
    }
}
/* Jobs section next to the banner title home eind */


/* intern opdracht pagina start */
.opdracht-intern-container {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    background-color: #f5f5f5;
    border: 2px solid #333333;
    border-radius: 8px;
    box-shadow: 0 4px 8px #e4e4e4;
}

.opdracht-intern-header {
    display: block; /* changed from flex */
    margin-bottom: 20px;
    border-bottom: 2px solid #70D3F0;
    padding-bottom: 8px;
}

.opdracht-intern-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #70D3F0;
}

.opdracht-intern-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.95em;
    color: #333;
    margin: 10px 0;
}

.opdracht-intern-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 3px #e4e4e4;
    font-family: inherit;
}

.opdracht-intern-description {
    margin-top: 15px;
    line-height: 1.6;
    color: #333333;
}

.opdracht-intern-two-column-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.opdracht-intern-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: top;
    justify-content: center;
}

.opdracht-intern-heading {
    font-size: 60px;
    font-weight: bold;
    color: #838383;
    margin-bottom: 10px;
}

.opdracht-intern-blueheader {
color: #70D3F0;
}
.opdracht-icon {
    font-style: normal;
    font-weight: normal;
    font-size: 2em;
    line-height: 1;
    color: #70D3F0;
    display: inline-block;
}
/* intern opdracht pagina eind*/

/* extern opdracht pagina begin */
.extern-opdracht-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 40px auto;
  padding: 20px;
  max-width: 1400px;
}


/* === Layout: Split Description and Form === */
.extern-description-column {
  flex: 3;
  background-color: #f5f5f5;
  border: 2px solid #333333;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 8px #e4e4e4;
}

.extern-form-column {
  flex: 1;
  background-color: #f5f5f5;
  border: 2px solid #333333;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 8px #e4e4e4;
  height: fit-content;
}

.extern-opdracht-header {
    display: block; /* changed from flex */
    margin-bottom: 20px;
    border-bottom: 2px solid #70D3F0;
    padding-bottom: 8px;
}

.extern-opdracht-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #00AEEF;
    margin-bottom: 10px;
}

.extern-opdracht-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.95em;
    color: #333;
    margin: 10px 0;
}

.extern-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 3px #e4e4e4;
    font-family: inherit;
}

.italiaans {
font-style:italic;
}

.extern-opdracht-icon {
    font-size: 2em;
    line-height: 1;
    color: #70D3F0;
    display: inline-block;
}


.extern-opdracht-description {
    margin-top: 15px;
    line-height: 1.6;
    color: #333333;
}

.extern-opdracht-description .extern-two-column-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruiter-contact-box {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.recruiter-contact-box h4 {
  margin-top: 0;
  font-size: 1.2em;
  color: #023a51;
}

.recruiter-contact-inner {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.recruiter-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.recruiter-contact-info {
  font-size: 1em;
  font-weight: bold;
  color: #222;
}

.recruiter-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #023a51;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 10px;
  transition: background-color 0.2s ease;
}

.recruiter-button i {
  margin-left: 10px;
}

.recruiter-button:hover {
  background-color: #70D3F0;
}


@media (max-width: 1024px) {
  .extern-opdracht-container {
    flex-direction: column;
  }

  .extern-form-column {
    border-left: none;
    padding-left: 0;
    margin-top: 30px;
  }
}



/* extern opdracht pagina eind */

/* applicattion-form  start*/
.application-form {
    margin-top: 20px;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="file"] {
    margin: 8px 0;
    padding: 8px;
    border: 1px solid #000;
    border-radius: 4px;
    width: 95%;
}

.application-form button {
    background-color: #70D3F0;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.application-form button:hover {
    background-color: #00AEEF;
}
/*application-form eind*/


/* opdrachten overzicht pagina start */
.opdrachten-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.opdracht-card {
    position: relative; /* Establishes a positioning context for absolute children */
    background-color: #fff;
    border: 2px solid #333333;
    padding: 16px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 8px #e4e4e4;
    transition: transform 0.2s ease;
    min-height:200px;
}

.no-jobs-found {
    margin: 20px;
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    text-align: center;
}

.no-jobs-found p {
    margin: 0;
}

.opdracht-card:hover {
    transform: scale(1.02);
    border-color: #70D3F0;
}

#map {
        height: 500px;
        min-height: 400px;
        width: 100%;
        z-index: 0;
}

.leaflet-container {
        z-index: 0 !important;
}

/* Override the default green fill */
.marker-cluster {
  background-color: transparent !important;
}

.map-marker {
  width: 14px;
  height: 14px;
  background-color: #70D3F0;
  border-radius: 50%;
  border: 2px solid white;
}

.marker-cluster div {
  background-color: inherit !important; /* So the parent class decides the color */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-clip: padding-box;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  color: white;
}

/* Small cluster – lightest blue */
.marker-cluster-small div {
  background-color: #70D3F0 !important;
  border: 2px solid #0090aa;
}

/* Medium cluster – medium blue */
.marker-cluster-medium div {
  background-color: #008fe0 !important;
  border: 2px solid #006bb3;
}

/* Large cluster – darkest blue */
.marker-cluster-large div {
  background-color: #00AEEF !important;
  border: 2px solid #004bb3;
}


/* opdrachten overzicht pagina end */

/* opdrachten pagina filter start*/

.opdracht-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f5f5f5;
}

.opdracht-search-form input[type="text"],
.opdracht-search-form select {
    padding: 8px;
    margin: 4px;
    border: 1px solid #333333;
    border-radius: 4px;
    min-width: 180px;
    max-width: 250px;
}

.opdracht-search-form button {
    background-color: #70D3F0;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



.opdracht-search-form button:hover {
    background-color: #00AEEF;
}


.opdracht-search-form input[type="text"], 
.opdracht-search-form select:not(.city-select)  {
    display:inline-block;
    height: 27px;
    padding: 5px;
}



.opdracht-search-form select.city-select {
    height: 60px; /* Adjusted height for multi-select */
}

.opdracht-search-form button {
    height: 27px;
    padding: 5px 10px;
    margin-top: 4px;
}

.opdracht-search-form label {
    margin: 0 5px;
    font-weight: bold;
    color: #333;
}

/* Increase specificity by chaining the selectors */
.opdracht-search-form input.searchopdrachtfield {
    height: 13px;
}

@media (max-width: 1199px) {
    .opdracht-search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 15px;
    }

    .opdracht-search-form input[type="text"],
    .opdracht-search-form select,
    .opdracht-search-form button {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .opdracht-search-form select.city-select {
        height: auto;
        min-height: 80px;
    }

    .opdracht-search-form button {
        height: auto;
        padding: 10px;
        font-size: 1rem;
    }

    .opdracht-search-form input.searchopdrachtfield {
        height: auto;
    }
}

/* opdrachten pagina filter end*/



.block01-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.block01-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.block01-image {
  flex: 1 1 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.3) 100%),
              url('https://www.solutionnow.nl/images/solutionnow-recruiter.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.block01-heading {
  margin: 0 30px 50px;
  color: #ffffff;
  font-size: 26px;
}

.block01-heading a {
  color: #ffffff;
  text-decoration: none;
}

.block01-text {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block01-title {
  font-size: 30px;
  margin: 0 0 20px 0;
}

.block01-paragraph {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.block01-button {
  background-color: #70D3F0;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: fit-content;
  min-width: 180px;
  text-align: center;
  display: inline-block;
}

.block01-button:hover {
  background-color: #00AEEF;
}


@media (max-width: 768px) {
  .block01-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .block01-image,
  .block01-text {
    flex: 1 1 100%;
  }

  .block01-heading {
    margin: 0 20px 30px;
    font-size: 22px;
    text-align: center;
  }

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

  .block01-paragraph {
    font-size: 15px;
    text-align: left;
  }

  .block01-button {
    align-self: center;
  }
}

.block02-section {
  background-color:#f5f5f5;
  padding: 60px 0;
}

.block02-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.block02-box {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 36px 51px 29px 51px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.block02-title {
  font-size: 30px;
  margin: 0 0 30px 0;
  line-height: 1.3;
}

.block02-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.block02-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.block02-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.block02-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.block02-button {
  background-color: #70D3F0;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: fit-content;
  min-width: 180px;
  text-align: center;
  display: inline-block;
}

.block02-button:hover {
  background-color: #00AEEF;
}

@media (max-width: 768px) {
  .block02-box {
    padding: 20px 20px 20px 20px;
  }

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

  .block02-text p {
    font-size: 15px;
    text-align: left;
  }

  .block02-button-wrapper {
    text-align: center;
  }

  .block02-button {
    font-size: 16px;
    align-self: center;
  }
}

.owl-carousel .item {
    display: flex;
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */
    background: #ffffff;
    border-radius: 5px;
    padding: 10px;             /* Reduce padding to make the banner less high */
    margin: 5px;
    box-shadow: 0 4px 6px #e4e4e4;
    height: 120px;             /* Adjusted height for a shorter banner */
}

/* Image Styling */
.owl-carousel .item img {
    max-width: 200px;          /* Adjusted size to fit the shorter banner */
    max-height: 200px;          /* Keep the aspect ratio */
    object-fit: contain;
    margin: 0 auto;            /* Center horizontally within the item */
}

/* Pagination Dots Styling */
.owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    margin: 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.owl-dot.active {
    background-color: #C53543;
}

.block03-section {
    background-color: #023a51;
    padding: 67px 50px;
    margin-top: 40px;
}

.block03-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.block03-text {
  flex: 1 1 48%;
  color: #ffffff;
}

.block03-title {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.block03-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #ffffff;
}

.block03-button-wrapper {
  margin-top: 20px;
}

.block03-button {
  background-color: #70D3F0;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
  min-width: 180px;
  text-align: center;
}

.block03-button:hover {
  background-color: #00AEEF;
}

.block03-image-wrapper {
  flex: 1 1 48%;
  border-radius: 12px;
  overflow: hidden;
}

.block03-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .block03-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .block03-text,
  .block03-image-wrapper {
    flex: 1 1 100%;
  }

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

  .block03-text p {
    font-size: 15px;
    text-align: left;
  }

  .block03-button {
    font-size: 16px;
    align-self: center;
  }

  .block03-button-wrapper {
    text-align: center;
  }

  .block03-image {
    margin-top: 20px;
  }
}

.block04-section {
  background-color: #fffcfc;
  padding: 60px 20px 0;
}

.block04-container {
  max-width: 1040px;
  margin: 0 auto;
}

.block04-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.block04-post {
  flex: 1 1 calc(33.333% - 20px);
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.block04-post:hover {
  transform: translateY(-5px);
}

.block04-post a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.block04-image {
  width: 100%;
  height: auto;
  display: block;
}

.block04-title {
  font-size: 18px;
  line-height: 1.4;
  padding: 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .block04-post {
    flex: 1 1 100%;
  }

  .block04-title {
    font-size: 16px;
    padding: 16px;
  }
}

.block05-section {
  padding: 60px 20px;
}

.block05-container {
  background-color: #023a51;
  max-width: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  border-radius: 16px;
  flex-wrap: nowrap; /* prevent stacking on desktop */
}

.block05-column {
  flex: 0 0 40%; /* true two-column layout */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 30px;
  color:#ffffff;
}

.block05-form {
  color: #fff;
}

.block05-item {
  margin-bottom: 30px;
  color:#ffffff;
}

.block05-icon {
    font-size: 22px;
    color: #70D3F0;
    margin-bottom: 8px;
    float: left;
    margin-right: 9px;
}

.block05-label {
  font-size: 18px;
  margin: 0 0 6px 0;
}

.block05-link,
.block05-text {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
}

.block05-item a:hover{
color:#70D3F0;
text-decoration: underline;
}

.block05-form label {
  display: block;
  margin-top: 16px;
  font-weight: 600;
}

.block05-form input,
.block05-form textarea {
  width: 98%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 6px;
  border: none;
  font-family: inherit;
  font-size: 16px;
}

.block05-form input[type="file"] {
    padding: 6px;
    background: #fff;
    color: #000;
}

.block05-form textarea {
  resize: vertical;
}

.block05-button {
  margin-top: 20px;
  background-color: #fff;
  color: #70D3F0;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.block05-button:hover {
  background-color: #00AEEF;
  color: #fff;
}

.mail-message-content-container {
    margin: auto;
    text-align: center;
}

.g-recaptcha{
margin-top: 4px;
}

@media (max-width: 768px) {
  .block05-container {
    flex-direction: column;
    flex-wrap: wrap; /* allow stacking on small screens */
  }

  .block05-column {
    flex: 1 1 100%;
    margin-bottom: 30px;
    width:83%;
  }

  .block05-button {
    width: 100%;
  }
}

.block06-wrapper {
  padding: 50px 20px;
  background-color:  #f5f5f5;
}

.block06-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.block06-column {
  flex: 1 1 50%;
}

.block06-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.block06-title {
  font-size: 26px;
  margin-bottom: 16px;
}

.block06-text p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.block06-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.block06-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.block06-checklist i {
  color: #1bba00;
  font-size: 18px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .block06-container {
    flex-direction: column;
    gap: 24px;
  }

  .block06-title {
    font-size: 22px;
  }

  .block06-checklist li {
    font-size: 16px;
  }

  .block06-image img {
    border-radius: 10px;
  }
}


.block07-wrapper {
  padding: 50px 20px;
  background-color: #fff;
}

.block07-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
}

.block07-column {
  flex: 1 1 50%;
}

.block07-title {
  font-size: 30px;
  margin-bottom: 20px;
}

.block07-text p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.block07-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .block07-container {
    flex-direction: column;
    gap: 24px;
  }

  .block07-title {
    font-size: 24px;
  }

  .block07-image img {
    border-radius: 10px;
  }
}

.block08-wrapper {
  padding: 50px 20px;
  background-color:  #ffffff;
}

.block08-container {
  max-width: 1040px;
  margin: 0 auto;
}

.block08-card {
    background-color: #e0ecf0;
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: auto;
}

.block08-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.block08-content p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.block08-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.block08-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.block08-checklist i {
  font-size: 18px;
  margin-top: 4px;
  color:  #1bba00;
}

@media (max-width: 768px) {
  .block08-card {
    padding: 30px 20px;
  }

  .block08-content h2 {
    font-size: 22px;
  }

  .block08-checklist li {
    font-size: 16px;
  }
}

.block09 {
  background-color: #e7f4ff;
  padding: 40px 20px;
}

.block09 .container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.block09 .column {
  flex: 1 1 48%;
}

.block09 .image-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.block09 .text-column {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px 25px;
  color: #003865;
}

.block09 .text-column h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.block09 .text-column p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333333;
}

@media (max-width: 768px) {
  .block09 .container {
    flex-direction: column;
  }

  .block09 .column {
    flex: 1 1 100%;
  }
}

/* Block10 Layout */
.block10,
.block10 * {
  box-sizing: content-box;
}

.block10 {
    background-color: #ffffff;
    padding: 40px 20px;
    margin: auto;
}

.block10 .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center; /* Center items inside their grid cell */
  justify-content: center; /* Center the grid itself if it has room */
}

.block10 .card {
  background-color: #e0ecf0;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width:300px;
}

.block10 .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.block10 .card-header i {
  font-size: 28px;
  color: #70D3F0;
}

.block10 .card-header .opdracht-title {
  font-size: 20px;
  margin: 0;
  color: #001f3f;
}
.block10 .card i {
  font-size: 32px;
  color: #70D3F0;
  margin-bottom: 10px;
}

.block10 .card h1 {
  font-size: 22px;
  margin: 10px 0 8px;
  color: #001f3f;
}

.block10 .card p {
  font-size: 16px;
  margin-bottom: 14px;
  color: #333333;
}

.block10 .card a {
  background-color: #70D3F0;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.block10 .card a:hover {
  background-color: #00AEEF;
}

/* Responsive: stacked layout on small screens */
@media (max-width: 768px) {
  .block10 .cards {
    grid-template-columns: 1fr;
  }
}

.block11 {
  padding: 50px 20px;
  background-color: #ffffff;
}

.block11-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.block11-column {
  border-radius: 30px;
  padding: 30px;
  flex: 1;
}

.block11-column h1 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #001f3f;
}

.block11-column p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .block11-container {
    flex-direction: column;
    gap: 24px;
  }

  .block11-column {
    padding: 24px;
  }

  .block11-column h1 {
    font-size: 26px;
  }

  .block11-column p {
    font-size: 15px;
  }
}

.block12 {
  background-color: #f4f8fa;
  padding: 50px 20px;
}

.block12-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block12-header h2 {
  font-size: 28px;
  text-align: center;
  color: #001f3f;
}

.block12-columns {
  display: flex;
  gap: 32px;
  flex-direction: row;
}

.block12-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.block12-card h3 {
  font-size: 26px;
  color: #001f3f;
  margin-bottom: 12px;
}

.block12-card p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 16px;
}

.block12-card p em {
  display: block;
  font-style: italic;
  margin-bottom: 10px;
  color: #555;
}

/* ✅ Responsive layout for smaller screens */
@media (max-width: 768px) {
  .block12-columns {
    flex-direction: column;
    gap: 24px;
  }

  .block12-header h2 {
    font-size: 24px;
  }

  .block12-card h3 {
    font-size: 22px;
  }

  .block12-card p {
    font-size: 15px;
  }
}

.block13 {
  background-color: #f5f5f5;
  padding: 50px 20px;
}

.block13-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block13-header {
  text-align: center;
}

.block13-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #001f3f;
}

.block13-header p {
  font-size: 18px;
  color: #555;
  margin: 0;
}

.block13-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.block13-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 24px;
  flex: 1 1 calc(20% - 20px);
  min-width: 160px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.block13-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #001f3f;
}

.block13-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* ✅ Responsive layout */
@media (max-width: 1024px) {
  .block13-card {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .block13-card {
    flex: 1 1 calc(50% - 20px);
  }

  .block13-header h2 {
    font-size: 26px;
  }

  .block13-header p {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .block13-card {
    flex: 1 1 100%;
  }
}

.blog-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 20px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.blog-item {
  width: calc(50% - 20px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item a {
 color:black;
 text-decoration: none; 
}

.blog-item a:hover {
 text-decoration: underline; 
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-item h3 {
  font-size: 20px;
  padding: 16px;
  color: #080f35;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .blog-grid {
    gap: 30px;
  }

  .blog-item {
    width: 100%;
  }

  .blog-item h3 {
    font-size: 18px;
    padding: 14px;
  }
}

.dba {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  line-height: 1.6;
  color: #222;
}

.dba-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.dba-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #080f35;
}

.dba-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 32px 32px 36px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.dba-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.dba-content strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .dba {
    padding: 20px 16px;
  }

  .dba-meta {
    flex-direction: column;
    gap: 6px;
  }

  .dba-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .dba-content p {
    font-size: 15px;
  }

  .dba-image img {
    margin-bottom: 20px;
  }
}

.waterstaat {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  line-height: 1.6;
  color: #222;
}

.waterstaat-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.waterstaat-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #080f35;
}

.waterstaat-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 32px 32px 36px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.waterstaat-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.waterstaat-content strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .waterstaat {
    padding: 20px 16px;
  }

  .waterstaat-meta {
    flex-direction: column;
    gap: 6px;
  }

  .waterstaat-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .waterstaat-content p {
    font-size: 15px;
  }

  .waterstaat-image img {
    margin-bottom: 20px;
  }
}

/* General layout */
.blogpost.synprof {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 20px;
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: #fff;
}

/* Header section */
.blogpost.synprof .blogpost-header {
  text-align: center;
  margin-bottom: 24px;
}

.blogpost.synprof h1 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.blogpost.synprof .blogpost-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

.blogpost.synprof .blogpost-meta span {
  margin-right: 12px;
}

.blogpost.synprof img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Content section */
.blogpost.synprof .blogpost-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blogpost.synprof .blogpost-content strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: #222;
}

/* Link */
.blogpost.synprof a {
  color: #0073aa;
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .blogpost.synprof {
    padding: 20px 16px;
  }

  .blogpost.synprof h1 {
    font-size: 24px;
  }

  .blogpost.synprof .blogpost-meta {
    font-size: 13px;
  }

  .blogpost.synprof .blogpost-content p {
    font-size: 15px;
  }

  .blogpost.synprof .blogpost-content strong {
    font-size: 16px;
  }
}

.voorkeur {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
}

.voorkeur-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.voorkeur-title {
  font-size: 28px;
  margin: 10px 0 20px;
  font-weight: 700;
}

.voorkeur-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.voorkeur-content p {
  margin-bottom: 16px;
}

.voorkeur-content a {
  color: #0077b6;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .voorkeur {
    padding: 20px 16px;
  }

  .voorkeur-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .voorkeur-meta {
    flex-direction: column;
    gap: 4px;
  }

  .voorkeur-image img {
    margin-bottom: 20px;
  }

  .voorkeur-content p {
    font-size: 15px;
  }
}

.cache h1 {
margin-left:auto;
margin-right:auto;
}

.cache .update-form, .cache h1, .cache .content {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background-color: #70D3F0;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button a {
    color: #FFFFFF;
    text-decoration:none;
}

/*three column opdrachten start */

/* === Desktop Layout === */


.main-opdrachten {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.three-column-flex {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 20px;
  padding: 20px;
  align-items: flex-start;
}

.three-column-filters {
  flex: 1;
  max-width: 250px;
}

.three-column-cards {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.three-column-map {
  flex: 1.6; /* or 1.8 */
  max-width: 500px; /* optional, see Option 2 */
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.three-column-map #map {
    width: 100%;
    height: 500px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.three-column-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    background: #fafafa;
}

.three-column-search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.three-column-deadline {
    color: #888;
}

.three-column-details {
    margin-top: 10px;
    font-size: 0.9em;
    color: #888;
    list-style: none;
    padding-left: 0px;
}

.three-column-title a {
    font-size: 1.1em;
    font-weight: bold;
    color: #00AEEF;
    text-decoration: none;
}

.three-column-title a:hover {
    text-decoration: underline;
}

/* Labels */
.three-column-search-form label {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 18px;
}

/* Input fields */
.three-column-search-form input,
.three-column-search-form select {
  width: 98%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 6px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  color: #333;
  background: #fff;
  box-shadow: 0 0 0 1px #ccc inset;
}

/* Special case: multi-select */
.three-column-search-form select[multiple] {
  height: auto;
  min-height: 120px;
}

/* Buttons */
.three-column-search-form button {
  margin-top: 20px;
  background-color: #70D3F0;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.three-column-search-form button:hover {
  background-color: #00AEEF;
}


@media (max-width: 900px) {
  .three-column-flex {
    flex-direction: column;
  }

  .three-column-filters,
  .three-column-cards,
  .three-column-map {
    max-width: 100%;
    width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .three-column-map #map {
    height: 300px;
  }
}
/*three column opdrachten end */