/* Algemene opmaak */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

body {
  background-color: #032f47;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  margin-left: 0px; 
}

.content-container {
  margin-left: 5px;
}

.background {
  background-image: url('Achtergrond_bewerkt.png');
  margin-top: 10px;
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center;
}

.avatar {
  position: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.content {
  flex: 1 0 auto;
}

.left-column {
  background-color: #26363f;
}

.content-column {
  background-color: #2a3c9a;
  max-width: 600px;
  margin: 0 auto;
  overflow-y: auto;
  height: 100vh;
}

.right-column {
  background-color: #26363f;
}

/* Header */
.header {
  align-items: left;
  padding: 10px;
  background-color: #9ed9fc;
  color: #f36522;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
}

.logo-header {
  max-width: 600px;
  max-height: auto;
  margin: auto;
}

.logo-header img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .logo-header {
    max-width: 100%;
    max-height: none;
    align-items: left;
    margin-right: 5px;
    min-width: 200px;
    height: auto;
    overflow-y: visible;  /* geen eigen scroll */
  }
  .content-column {
    height: auto;         /* geen geforceerde schermhoogte */
    max-height: none;
    overflow-y: visible;  /* geen eigen scroll */
  }
}

.title {
  font-size: 44px;
  text-align: center;
  flex-grow: 1;
  line-height: 1;
}

/* Footer */
.footer {
  width: 100%;
  border: none !important;
  background-color: #10171b;
  color: #ff9900;
  margin-top: auto;
  padding: 0px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.horizontal-line {
  border-bottom: 4px solid #f36522;
  width: 100%;
  margin: 0;
}

.logo-cell {
  text-align: right;
  vertical-align: top;
  padding-right: 10px;
}

.logo-footer {
  max-width: 188px;
  max-height: auto;
  margin-right: 1px;
}

.email-cell {
  text-align: right;
  vertical-align: top;
  padding-right: 8px;
}

/* Tabellen */
table {
  width: 100%;
  border: none !important;
  border-spacing: 0 !important;
  border-collapse: collapse !important;
}

table thead th {
  border-bottom: 2px solid #f46522; /* Kies de kleur en dikte van de lijn */
}

th, td {
  border: none; /* Geen randen rond cellen */
  padding: 8px; /* Consistente padding */
  text-align: left;
}

.table1 {
  width: 100%;
  text-align: center;
  border: none;
  border-collapse: collapse;
  flex-wrap: wrap;
  margin: auto;
  background-color: #032f47;
}

.tabel td {
  width: 50%;
  text-align: center;
  padding: 1px;
}

td.cell {
  background-color: #425465;
  text-align: left;
}

/* Specifieke tabelinstellingen voor header/footer */
.header table, .footer table {
  border: none !important; /* Geen randen in header/footer-tabellen */
  border-collapse: collapse !important;
}

/* Links */
.links {
  text-align: left;
  margin-left: 5px;
}

.rechts {
  text-align: right;
}

.version {
  text-align: right;
  color: #f29303;
  font-size: 10px;
  position: absolute;
}

/* Uitklapmenu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #9ed9fc;
  color: #000000;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover {
  background-color: #f36522;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #032f47;
  min-width: 160px;
  z-index: 1;
  padding-top: 5px;
  right: 0;
}

.dropdown-content a {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #425465;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobiel */
@media screen and (max-width: 767px) {
  .tabel td {
    width: 100%;
    display: block;
  }
  
  .title {
    font-size: 18px;
    text-align: center;
    flex-grow: 1;
    line-height: 1;
  }
  
  .logo-header {
    max-width: 80px;
    max-height: auto;
    align-items: left;
    margin-right: 5px;
  }
  
  .logo-table .logo-img {
    max-width: 70px;
    max-height: auto;
  }
  
  .version {
    text-align: right;
    color: #ff9900;
    font-size: 12px;
    position: absolute;
  }
}


