/* Combined header and tabs styling for continuous gradient */
.md-header {
    background-color: #3B8889;
    /* <- let op de ontbrekende ; die je vergeten was */
}

.md-tabs {
    background-color: #3B8889
}

/* Footer styling to match header gradient */
.md-footer {
    /* same color twice = “flat” gradient */
    background: linear-gradient(to top, #3B8889, #3B8889) !important;
    color: #fff !important;
}

.md-footer__title {
    color: white !important;
}

.md-footer__link {
    color: white !important;
}

.md-footer__link:hover {
    color: #0C9096 !important;
}

.md-copyright {
    color: white !important;
}

.md-copyright a {
    color: white !important;
}

.md-copyright a:hover {
    color: #0C9096 !important;
}

/* Clean, compact footer layout */
.md-footer-meta__inner {
    padding: 0.5rem 1rem !important;
    max-width: 100% !important;
}

.md-footer-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: center !important;
    gap: 1rem !important;
    font-size: 0.75rem !important;
    width: 100% !important;
}

/* Copyright styling - left side */
.md-footer-copyright {
    color: white !important;
    text-align: center !important;
    justify-self: center !important;
}

/* Footer links styling - center */
.md-footer-links {
    text-align: center !important;
    justify-self: center !important;
}

.md-footer-links__link {
    color: white !important;
    text-decoration: none !important;
    margin: 0 0.5rem !important;
}

.md-footer-links__link:hover {
    color: #66cfd1 !important;
    /* lighter teal on hover */
}

/* Social links styling - right side */
.md-footer-social {
    display: flex !important;
    gap: 0.5rem !important;
    justify-self: center !important;
}

.md-footer-social__link {
    color: white !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    width: 1.2rem !important;
    height: 1.2rem !important;
}

.md-footer-social__link:hover {
    color: #0C9096 !important;
}

.md-footer-social__link svg {
    width: 1.2rem !important;
    height: 1.2rem !important;
    fill: currentColor !important;
}

/* Responsive layout for smaller screens */
@media screen and (max-width: 768px) {
    .md-footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }

    .md-footer-copyright,
    .md-footer-links,
    .md-footer-social {
        justify-self: center !important;
    }
}


/* .md-header__button.md-icon svg {
    display: none;
}

.md-header__button.md-icon::before {
    content: 'language';
    font-family: 'Material Symbols Outlined';
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    display: inline-block;
    margin-right: 8px;
} */

.logo-centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    /* Adjust the width as needed */
}

.center {
    display: block;
    margin: 0 auto;
}

/* Mobile navigation drawer styling to match header - only for the mobile drawer */
@media screen and (max-width: 76.1875em) {
    .md-nav--primary {
        background-color: #3B8889 !important;
    }

    .md-nav--primary .md-nav__title {
        background-color: #3B8889 !important;
        color: white !important;
    }

    .md-nav--primary .md-nav__title .md-nav__button {
        color: white !important;
    }

    .md-nav--primary .md-nav__title .md-nav__button:hover {
        color: #0C9096 !important;
    }
}

/* .md-nav__item .md-nav__link {
  color: #3B8889; 
} */