/* style.css */
body {
    font-family: Arial, sans-serif;
    background-color: #faf7f5;
    margin: 0 auto;
    padding: 0;
    max-width: 80%;
    align-items: center;
    justify-content: center;
    
    
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: calc(175 / var(--base-font-size, 16) * 1rem);
    padding-inline-start: calc(9.72222rem);
    padding-inline-end: calc(9.72222rem);
}


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

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  width: 100%;
}

.left,
.center,
.right {
  display: flex;
  align-items: center;
}

.left {
  flex: 1;
}

.center {
  flex: 2;
  justify-content: center;
}

.right {
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.lang, .profile {
  background: #f2efed;
  width: 40px;
  border: none;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 16px;
}

.profile {
    border-radius: 50px;
    display: flex;
    padding: 0px;
}

.profile img {
    width: 50px;
    height: auto;
}


main {
    padding: 20px;
    padding-inline: calc(175 / var(--base-font-size, 16) * 1rem);
    padding-inline-start: calc(6.72222rem);
    padding-inline-end: calc(6.72222rem);
    margin-bottom: 20px;
}

.breadcrumbs {
    color: gray;
    font-size: 0.9em;
    margin-bottom: 10px;
}

h1 {
    margin-top: 0;
}

.save-page {
    background-color: #0077C8;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.filters {
    margin: 15px 0;
}

.filters select, .filters button {
    margin-right: 10px;
    padding: 6px 12px;
    font-size: 1em;
    color: #0077b3;
    border: none;
    background-color: #fff;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.results-table th {
    padding-bottom: 10px;
}

.results-table th, .results-table td {
    padding: 10px;
    margin: 5px;
    font-size: 1,125rem;
    text-align: left;
}

.results-table tr {
  padding: 15px;
  margin-bottom: 5px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}


.results-table thead {
    background-color: #0077b3;
    color: white;
}

.results-table th[colspan="6"] {
    background-color: #003865;
    font-size: 1.1em;
    
}

.ec-behaald {
    float: right;
    font-weight: normal;
}

/* Modal overlay */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;
}

/* Modal inhoud */
.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: fadeIn 0.3s ease;
  text-align: center;
}

/* Sluit X */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Sluit-knop onderaan */
.modal-close-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #005aa7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.modal-close-button:hover {
  background-color: #003f7f;
}

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


.vu-footer {
  background-color: #0077b3;
  color: white;
  padding: 40px 20px;
  font-family: sans-serif;
  font-size: 14px;
}

.vu-footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding-inline: calc(175 / var(--base-font-size, 16) * 1rem);
  padding-inline-start: calc(6.72222rem);
  padding-inline-end: calc(6.72222rem);
}

.vu-footer-column h2 {
  font-weight: 500;
  margin-bottom: 12px;
}

.vu-footer-column ul {
  list-style: none;
  padding: 0;
}

.vu-footer-column li {
  margin-bottom: 6px;
  
}

.vu-footer-column a {
  color: white;
  font-size: 13px;
  line-height: 1.7rem;
  font-weight: 400;
  text-decoration: none;
}

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

.vu-footer-socials {
  text-align: center;
  margin-bottom: 20px;
}

.vu-footer-socials a {
  margin: 0 10px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.vu-footer-links {
  text-align: center;
  margin-bottom: 10px;
}

.vu-footer-links a {
  color: #0077b3;
  margin: 0 10px;
  text-decoration: none;
}

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

.vu-footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #0077b3;
}


.footer-white {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-inline: calc(175 / var(--base-font-size, 16) * 1rem);
  padding-inline-start: calc(7.72222rem);
  padding-inline-end: calc(7.72222rem);
  height: 70px; /* Pas aan indien je hogere/lager witruimte wilt */
  box-sizing: border-box;
  width: 100%;
}

.vu-footer-links,
.vu-footer-bottom {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.vu-footer-links a,
.vu-footer-bottom {
  color: #0077b3;
  text-decoration: none;
  font-size: 0.7rem;
}


@media (max-width: 768px) {
    .results-table {
        font-size: 0.9em;
        overflow-x: auto;
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        margin-left: auto;
    }
}