/*******************************************************************************************************************
****** CSS definition for Heights.nl - Copyright 2006-2026 - Netherlands - Version 20250110 v26 ******
********************************************************************************************************************/

/*-----------------------------------------------------------------------------
** Typographic scale for HEIGHTS
-----------------------------------------------------------------------------*/
:root {
  /* Typografische schaal */
  --font-xs: 14px;
  --font-sm: 16px;
  --font-md: 20px;
  --font-lg: 24px;
  --font-xl: 32px;

  /* Professioneel kleurenschema */
  --brand-deep: #000b33; /* Originele logo kleur */
  --brand-royal: #001f4d;
  --accent-gold: #c5a059; /* Subtiele goud-accent voor klasse */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --card-shadow: 0 10px 30px rgba(0, 11, 51, 0.1);
  
  /* Neutrale kleuren */
  --color-background: #fafbfc;
  --color-text: #2c3e50;
  --color-text-light: #6c7a89;
  --color-border: #e4e7eb;
  --color-link: #0066cc; /* Zakelijk blauw voor links - goed contrast en herkenbaar */
  
  /* Functionele kleuren - subtiel */
  --color-success: #27ae60;
  --color-info: #3498db;
  --color-warning: #f39c12;
  --color-highlight: #9b59b6;
  
  /* Schaduw */
  --shadow-light: 0 2px 8px rgba(0, 11, 51, 0.06);
  --shadow-medium: 0 4px 16px rgba(0, 11, 51, 0.08);
}

/*-----------------------------------------------------------------------------
** HTML and BODY definitions for HEIGHTS
-----------------------------------------------------------------------------*/

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  font-size: var(--font-sm);
  color: var(--color-text);
  background-color: var(--color-background);
  font-weight: normal;
  font-style: normal; 
  padding: 12px;
  margin: 12px;
  min-width: 320px; /* Minimum breedte voor zeer kleine schermen */
}   

td.tdleft {
  font-family: sans-serif;
  font-size: var(--font-md);
  font-weight: normal;
  border-right: 2px dashed silver;
  font-style: normal;  
}

/* Standaard opmaak voor alle UL elementen */
ul {
    list-style-type: square;    /* Vierkante bullets */
    list-style-position: inside; /* Bullets binnen de tekst */
}

/* Opmaak voor alle LI elementen binnen UL */
ul li {
    padding-left: 5px;      /* Ruimte links van de bullet */
    margin-bottom: 5px;     /* Ruimte onder elk list item */
    line-height: 1.5em;     /* Regelafstand */
    font-style: normal;
}

/* Standaard opmaak voor alle OL elementen */
ol {
    line-height: 1.5em;   /* Regelafstand */
}

/* Opmaak voor alle LI elementen binnen OL */
ol li {
    margin-bottom: 10px;    /* Ruimte onder elk list item */
    padding-left: 5px;      /* Ruimte links van de bullet */
}

/* Content wrapper voor consistente uitlijning */
.content-wrapper {
  max-width: 728px;
  margin: 0 auto;
  padding: 0;
}

/* Ensure main content has proper spacing and alignment */
main {
  padding: 0;
  margin: 0;
  max-width: 728px;
}

/* Fix voor float clearing - voorkomt dat floated elementen overlappen */
.modern-card::after,
.heights-box::after,
.success-box::after,
.training-section::after {
  content: "";
  display: table;
  clear: both;
}

/* Override voor moderne cards om binnen de 728px te blijven */
.modern-card,
.heights-box,
.info-box,
.success-box,
.warning-box,
.highlight-box {
  max-width: 728px;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

/* Service grid aanpassingen voor betere uitlijning */
.service-grid {
  max-width: 728px;
  margin-left: 0;
  margin-right: 0;
}

#wrap { 
  width: 728px; 
  margin: 0 auto; 
}

/*-----------------------------------------------------------------------------
** MODERNE CONTENT BLOKKEN
**---------------------------------------------------------------------------*/

/* Verbeterde gray-background class */
.gray-background { 
  background: var(--glass-bg);
  padding: 25px;
  border-radius: 12px;
  max-width: 700px;
  margin: 25px auto;
  color: var(--color-text);
  font-family: sans-serif;
  font-size: var(--font-md);
  font-weight: normal;
  line-height: 1.6;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.gray-background:hover {
  box-shadow: 0 12px 40px rgba(0, 11, 51, 0.12);
  transform: translateY(-2px);
}

/* Nieuwe moderne content blokken */
.modern-card {
  background: var(--glass-bg);
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  overflow: hidden; /* Voorkomt dat content buiten de container loopt */
}

.modern-card:hover {
  box-shadow: 0 15px 45px rgba(0, 11, 51, 0.15);
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

/* Aangepaste info-box met gecentreerde tekst en buttons */
.info-box {
  background: var(--glass-bg);
  padding: 20px 20px 20px 15px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid var(--color-info);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.success-box {
  background: var(--glass-bg);
  padding: 20px 20px 20px 15px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid var(--color-success);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.warning-box {
  background: var(--glass-bg);
  padding: 20px 20px 20px 15px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid var(--color-warning);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.highlight-box {
  background: var(--glass-bg);
  padding: 20px 20px 20px 15px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid var(--color-highlight);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

/* Heights branded box */
.heights-box {
  background: var(--glass-bg);
  padding: 25px 25px 25px 20px;
  border-radius: 12px;
  margin: 25px 0;
  border-left: 5px solid var(--brand-deep);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.heights-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(197, 160, 89, 0.08), transparent);
  border-radius: 0 12px 0 100px;
}

/*-----------------------------------------------------------------------------
** AFBEELDINGEN BINNEN CONTAINERS - Voorkomt overflow
**---------------------------------------------------------------------------*/

/* Alle afbeeldingen binnen moderne containers schalen naar beschikbare ruimte */
.modern-card img,
.heights-box img,
.info-box img,
.success-box img,
.warning-box img,
.highlight-box img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Behoud float styling voor kleine afbeeldingen (zoals logo's en icons) */
.modern-card img[align="left"],
.heights-box img[align="left"],
.modern-card img[align="right"],
.heights-box img[align="right"] {
  display: inline;
  max-width: 150px; /* Beperk floated afbeeldingen */
}

/* Training section afbeeldingen specifiek - behoud float rechts */
.training-section img[align="right"] {
  display: inline;
  max-width: 128px;
  float: right;
}

/*-----------------------------------------------------------------------------
** CONTACT FORM STYLES
**---------------------------------------------------------------------------*/

.contact-form-section {
  margin: 30px 0;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.contact-form {
  margin-top: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: var(--font-md);
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #d0d0d0;
  border-radius: 5px;
  font-size: var(--font-sm);
  font-family: sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-deep);
  box-shadow: 0 0 0 3px rgba(0, 11, 51, 0.1);
}

.form-group input.invalid {
  border-color: #ff3333;
  box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 200px;
  line-height: 1.5;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

/* Checkbox styling */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
  font-size: var(--font-sm);
  line-height: 1.4;
  gap: 10px;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-label .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #d0d0d0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
  background-color: var(--color-secondary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: var(--brand-deep);
  border-color: var(--brand-deep);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "\2713";
  color: white;
  font-size: var(--font-xs);
  font-weight: bold;
}

.checkbox-label:hover .checkmark {
  border-color: var(--brand-deep);
}

/* Submit button */
.form-actions {
  margin-top: 30px;
  text-align: center;
}

.submit-button {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-royal) 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: var(--font-md);
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: 200px;
  box-shadow: var(--card-shadow);
}

.submit-button:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--brand-royal) 0%, #00112a 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 11, 51, 0.25);
  border: 1px solid var(--accent-gold);
}

.submit-button:active:not(:disabled) {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.submit-button.loading {
  background: linear-gradient(135deg, #666 0%, #555 100%);
}

.loading-spinner {
  animation: spin 1s linear infinite;
  font-size: var(--font-md);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Form messages */
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-size: var(--font-sm);
  line-height: 1.5;
}

.form-message.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.form-message.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.form-message strong {
  display: block;
  margin-bottom: 8px;
}

/* Form divider */
.form-divider {
  margin: 40px 0;
  border: none;
  height: 2px;
  background-color: #e0e0e0;
  border-radius: 1px;
}

/*-----------------------------------------------------------------------------
** ENTRY item classes
**---------------------------------------------------------------------------*/

.entrytitle {
  font-size: var(--font-xl);
  font-weight: bold;
}

.entrysubtitle {
  font-size: var(--font-lg);
  font-weight: bold;
}

h3 {
  font-size: var(--font-lg);
  font-weight: bold;
}

h4 {
  font-size: var(--font-md);
  font-weight: bold;
}

h5 {
  font-size: var(--font-md);
  font-weight: normal;
}

h6 {
  font-size: var(--font-md);
  font-weight: normal;
  font-style: italic;
}

.entrydate {
  color: var(--color-muted);
  font-size: var(--font-md);
}

.entrytext {
  font-size: var(--font-md);
  line-height: 1.5em;
}

.entrytextintro {
  font-size: var(--font-lg);
  line-height: 1.5em;
}

.entrytextgraph {
  color: #676767;
  font-size: var(--font-md);
  font-weight: normal;
  line-height: 1.5em;
  font-style: italic; 
}

.entryerror {
  color: #ff3333;
  font-size: var(--font-md);
}                        

.entrytitlegrey {
  color: var(--color-muted);
  font-size: var(--font-lg);
  font-weight: bold;
  font-style: italic;
}

.entrytextgrey {
  color: var(--color-muted);
  font-size: var(--font-md);
  font-weight: normal;
  font-style: italic;
}   

.entrylink {
  color: var(--color-link);
  font-size: var(--font-md);
  text-decoration: none;
}

a.entrylink { color: var(--color-link); }
a.entrylink:visited { color: var(--color-link); }
a.entrylink:hover { color: var(--accent-gold); }
a.entrylink:active { color: var(--color-link); }

/* Override voor entrylink binnen moderne containers - erft font-size */
.modern-card .entrylink,
.modern-card a.entrylink,
.heights-box .entrylink,
.heights-box a.entrylink,
.info-box .entrylink,
.info-box a.entrylink,
.success-box .entrylink,
.success-box a.entrylink,
.warning-box .entrylink,
.warning-box a.entrylink,
.highlight-box .entrylink,
.highlight-box a.entrylink {
  font-size: inherit; /* Erft de font-size van de parent element */
}

.entrylinkintro {
  color: var(--color-link);
  font-size: var(--font-lg);
  text-decoration: none;
}

a.entrylinkintro { color: var(--color-link); }
a.entrylinkintro:visited { color: var(--color-link); }
a.entrylinkintro:hover { color: var(--accent-gold); }
a.entrylinkintro:active { color: var(--color-link); }

/* Override voor entrylinkintro binnen moderne containers */
.modern-card .entrylinkintro,
.modern-card a.entrylinkintro,
.heights-box .entrylinkintro,
.heights-box a.entrylinkintro,
.info-box .entrylinkintro,
.info-box a.entrylinkintro,
.success-box .entrylinkintro,
.success-box a.entrylinkintro,
.warning-box .entrylinkintro,
.warning-box a.entrylinkintro,
.highlight-box .entrylinkintro,
.highlight-box a.entrylinkintro {
  font-size: inherit; /* Erft de font-size van de parent element */
}

img { border: none; }

.centered-text {
  text-align: center;
  font-size: var(--font-md);
  line-height: 1.5em;
}

/*-----------------------------------------------------------------------------
** MODERNE BUTTONS EN LINKS
**---------------------------------------------------------------------------*/

/* Moderne button styling - geen margin-right meer */
.modern-button {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-royal) 100%);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: var(--font-sm);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  text-align: center;
  min-width: 140px;
}

.modern-button:hover {
  background: linear-gradient(135deg, var(--brand-royal) 0%, #00112a 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 11, 51, 0.3);
  border: 1px solid var(--accent-gold);
  color: white;
  text-decoration: none;
}


.modern-button:active {
  transform: translateY(0);
}

/* Secondary button */
.modern-button-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: var(--color-secondary);
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: var(--font-sm);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
  cursor: pointer;
}

.modern-button-secondary:hover {
  background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
  color: var(--color-secondary);
  text-decoration: none;
}

/* Outline button */
.modern-button-outline {
  background: transparent;
  color: var(--brand-deep);
  padding: 12px 25px;
  border: 2px solid var(--brand-deep);
  border-radius: 25px;
  font-size: var(--font-sm);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 140px;
}

.modern-button-outline:hover {
  background: var(--brand-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
  border-color: var(--accent-gold);
  text-decoration: none;
}


/* Voor moderne buttons binnen info-box */
.info-box .modern-button,
.info-box .modern-button-secondary,
.info-box .modern-button-outline {
  margin: 10px 5px; /* Ruimte tussen buttons */
  display: inline-block;
}

/*-----------------------------------------------------------------------------
** OUDE BUTTONS (BACKWARDS COMPATIBILITY)
**---------------------------------------------------------------------------*/

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  padding: 10px; /* Voeg wat padding toe voor een groter klikgebied */
}

.button span {
  margin-bottom: 10px;
  font-size: var(--font-md); /* Expliciet instellen op 20px */
}

.button img {
  margin-top: 10px;
}

.buttonlink {
  color: #BDE79C; 
  background-color: #BDE79C; 
  text-decoration: none; 
}

a.buttonlink:visited { color: #BDE79C; background-color: #BDE79C; text-decoration: none; }
a.buttonlink:hover { color: #BDE79C; background-color: #BDE79C; text-decoration: none; }
a.buttonlink:active { color: #BDE79C; background-color: #BDE79C; text-decoration: none; }

/*-----------------------------------------------------------------------------
** OUDE PAGE/MAIN CLASSES (BACKWARDS COMPATIBILITY)
**---------------------------------------------------------------------------*/

.pagetitle {
  color: var(--color-text);
  font-size: var(--font-xl);
  font-weight: bold;
}

.streep {
  color: #D3D3D3;
  background-color: #D3D3D3;
  height: 2px;
  border: 0;
}

.mainabout {
  color: var(--color-text);
  font-size: var(--font-xl);
}

.maintitle {
  color: var(--color-text);
  font-size: 28px;
}

.mainurl {
  color: #0000f0;
  font-size: 28px;
  font-weight: bold;
}

/*-----------------------------------------------------------------------------
** NAVBAR, MENU LINK classes
**---------------------------------------------------------------------------*/

.navbtn {
  color: var(--color-text);
  font-size: 28px;
  text-decoration: none;
}

a.navbtn:hover {     
  background-color: #D3D3D3;
  color: var(--accent-gold);
}

a.menulink {
  color: var(--color-text);
  font-size: 28px;
  font-weight: bold;
}

a.menulink:visited {
  color: var(--color-text);
  font-weight: bold;
}

a.menulink:hover {
  background-color: #FFFFFF;
  color: var(--color-primary);
}

a.menulink:active {      
  color: #6B9730;
}

/*-----------------------------------------------------------------------------
** MODERNE 2025 NAVIGATIE EN HEADERS
**---------------------------------------------------------------------------*/

/* Moderne hoofdnavigatie - COMPACT */
.main-navigation {
  background: var(--glass-bg);
  padding: 8px 10px;
  border-radius: 6px;
  margin: 4px 0;
  box-shadow: var(--shadow-light);
  text-align: center;
  border: 1px solid var(--color-border);
  line-height: 1.2;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  padding: 6px 12px;
  margin: 2px 3px;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: var(--brand-deep);
  color: white;
  text-decoration: none;
}

.nav-link.active {
  background-color: var(--brand-deep);
  color: white;
  font-weight: 700;
}

.nav-separator {
  display: none; /* Verticale strepen verbergen */
}

/* Moderne header styling */
.modern-header {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-royal) 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: var(--card-shadow);
}

.modern-header h1,
.modern-header h2 {
  color: white;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Verbeterde H1 styling */
h1 {
  color: var(--color-text);
  font-size: var(--font-xl);
  font-weight: 700;
  margin: 25px 0 20px 0;
  text-shadow: var(--shadow-light);
  position: relative;
  font-family: Arial, sans-serif;
}

h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-deep), var(--accent-gold));
  margin-top: 8px;
  border-radius: 2px;
}

/* Verbeterde H2 styling */
h2 {
  color: var(--color-text);
  font-size: var(--font-lg);
  font-weight: 600;
  margin: 20px 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e9ecef;
  position: relative;
}

h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* Moderne navigatie (algemeen) */
.modern-nav {
  background: var(--glass-bg);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--color-border);
}

.modern-nav a {
  color: var(--color-text);
  text-decoration: none;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.modern-nav a:hover {
  background-color: var(--brand-deep);
  color: white;
  transform: translateY(-1px);
}

/* Breadcrumb styling */
.breadcrumb {
  background: var(--glass-bg);
  padding: 12px 20px;
  border-radius: 25px;
  margin: 15px 0;
  font-size: var(--font-xs);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--color-border);
}

.breadcrumb a {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--accent-gold);
}

.breadcrumb span {
  color: var(--color-text-light);
  margin: 0 8px;
}

/*-----------------------------------------------------------------------------
** MODERNE TABELLEN EN LIJSTEN
**---------------------------------------------------------------------------*/

/* Moderne tabel styling */
.modern-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 20px 0;
}

.modern-table th {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-royal) 100%);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  border: none;
}

.modern-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.3s ease;
}

.modern-table tr:hover td {
  background-color: #f8f9fa;
}

.modern-table tr:last-child td {
  border-bottom: none;
}

/* Verbeterde standaard tabel classes */
.tbltitel {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-royal) 100%);
  color: white;
  font-size: var(--font-sm);
  font-weight: 600;
  padding: 12px 15px;
  border: none;
}

.odd {
  background-color: #f8f9fa;
  color: var(--color-text);
  font-size: var(--font-sm);
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}

.even {
  background-color: var(--color-secondary);
  color: var(--color-text);
  font-size: var(--font-sm);
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}

.odd:hover,
.even:hover {
  background-color: #e3f2fd;
}

.centered-table { 
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: none;
}

/* Moderne lijst styling */
.modern-list {
  background: var(--glass-bg);
  padding: 20px;
  border-radius: 12px;
  margin: 10px 10px;
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--brand-deep);
}

.modern-list ul {
  margin: 0;
  padding-left: 0;
}

.modern-list li {
  list-style: none;
  padding: 8px 0 8px 30px;
  position: relative;
  border-bottom: 1px solid #e9ecef;
}

.modern-list li:last-child {
  border-bottom: none;
}

.modern-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
  font-size: var(--font-sm);
}

/* Verbeterde lijst styling binnen colored boxes - consistent met modern-list */
.info-box ul,
.success-box ul,
.warning-box ul,
.highlight-box ul,
.heights-box ul {
  margin: 10px 0; /* Minder marge boven en onder */
  padding-left: 0; /* Geen extra padding */
  text-align: left; /* Override center alignment voor lijsten */
}

.info-box li,
.success-box li,
.warning-box li,
.highlight-box li,
.heights-box li {
  list-style: none;
  padding: 4px 0 4px 20px; /* Minder padding links - van 20px naar 12px */
  position: relative;
  margin-bottom: 4px; /* Minder ruimte tussen items */
  text-align: left;
  line-height: 1.4; /* Compactere regelafstand */
}

.info-box li::before,
.success-box li::before,
.warning-box li::before,
.highlight-box li::before,
.heights-box li::before {
  content: '\25AA'; /* Square bullet */
  position: absolute;
  left: 2px; /* Dichter bij de rand */
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
}

/* Specifieke styling voor h3 en h4 in grid layouts */
.info-box h3,
.success-box h3,
.warning-box h3,
.highlight-box h3,
.heights-box h3 {
  color: var(--color-text);
  font-size: var(--font-md);
  margin: 0 0 8px 0; /* Minder marge onder */
  text-align: left; /* Links uitlijnen voor betere leesbaarheid */
}

.info-box h4,
.success-box h4,
.warning-box h4,
.highlight-box h4,
.heights-box h4 {
  color: #555;
  font-size: var(--font-sm);
  margin: 0 0 6px 0; /* Minder marge onder */
  text-align: left; /* Links uitlijnen voor betere leesbaarheid */
}

/*-----------------------------------------------------------------------------
** SERVICE GRID EN CARDS (NIEUWE HOMEPAGE ELEMENTEN)
**---------------------------------------------------------------------------*/

/* Service Grid Container */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Service Card Styling */
.service-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
  border-color: var(--accent-gold);
}

.service-card img {
  margin-bottom: 10px;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.service-card:hover img {
  filter: grayscale(0%);
}

.service-card h3 {
  font-size: var(--font-md);
  margin: 10px 0;
  color: var(--brand-deep);
}

.service-card p {
  font-size: var(--font-xs);
  color: #666;
  margin: 0;
}

/* Voordelen cards styling - grotere icons */
.service-card.conversion-card,
.service-card.cost-reduction-card,
.service-card.capital-card,
.service-card.process-card,
.service-card.risk-card {
  padding: 25px 20px;
  text-align: center;
}

/* Specifieke border kleuren voor voordelen cards */
.service-card.conversion-card {
  border-left: 4px solid var(--accent-gold);
}

.service-card.cost-reduction-card {
  border-left: 4px solid var(--brand-royal);
}

.service-card.capital-card {
  border-left: 4px solid var(--accent-gold);
}

.service-card.process-card {
  border-left: 4px solid var(--brand-royal);
}

.service-card.risk-card {
  border-left: 4px solid var(--accent-gold);
}

.service-card.conversion-card img,
.service-card.cost-reduction-card img,
.service-card.capital-card img,
.service-card.process-card img,
.service-card.risk-card img {
  width: 80px !important;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.service-card.conversion-card:hover img,
.service-card.cost-reduction-card:hover img,
.service-card.capital-card:hover img,
.service-card.process-card:hover img,
.service-card.risk-card:hover img {
  transform: scale(1.1);
}

.service-card.conversion-card h3,
.service-card.cost-reduction-card h3,
.service-card.capital-card h3,
.service-card.process-card h3,
.service-card.risk-card h3 {
  margin: 15px 0 10px 0;
  font-size: var(--font-md);
  font-weight: 600;
  color: var(--brand-deep);
}

.service-card.conversion-card p,
.service-card.cost-reduction-card p,
.service-card.capital-card p,
.service-card.process-card p,
.service-card.risk-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #555;
}

/* Service Links in Heights Box */
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
}

.service-link {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: var(--color-link);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-light);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.service-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.service-link:hover::before {
  left: 100%;
}

.service-link:hover {
  background: white;
  color: var(--color-link);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
  border-color: var(--accent-gold);
  text-decoration: none;
}

/* Voor service-links binnen info-box */
.info-box .service-links {
  justify-content: center; /* Centreert de flex items */
  margin-top: 15px;
}

/* Voor gewone links in info-box */
/*
.info-box a {
  display: inline-block;
  margin: 5px;
}
*/

/* Slider Image Container */
.slider-container {
  padding: 0;
  margin: 20px 0;
}

.slider-container img {
  border-radius: 12px;
  display: block;
}

/* Contact Call-to-Action Container */
.contact-cta-container {
  max-width: 728px;
  margin: 20px auto;
  padding: 0 10px;
}

.contact-cta-text {
  margin-bottom: 20px;
  font-size: var(--font-md);
}

.contact-cta-buttons .modern-button {
  margin-right: 10px;
}

/* English Version Container */
.english-version-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #e9ecef;
  margin: 20px 0;
  padding: 15px;
}

.english-version-text {
  margin: 0;
  color: #666;
  font-size: var(--font-sm);
  text-align: center;
}

.english-version-text a {
  font-weight: 600;
}

/* Contact CTA Buttons Container */
.contact-cta-buttons {
  text-align: center;
}

.contact-cta-buttons .modern-button {
  margin-right: 10px;
}

/*------------------------------------------------------------------------------------------------------------------
** GERELATEERDE ONDERWERPEN SECTIE - Nieuwe styling voor "wat is" pagina's
**------------------------------------------------------------------------------------------------------------------*/

.related-topics {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e6ed;
}

.related-topics h2 {
  color: var(--color-text);
  font-size: var(--font-lg);
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e9ecef;
  position: relative;
}

.related-topics h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
}

.related-topics .service-links {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 15px;
}

.related-topics .service-link {
  background: rgba(0, 11, 51, 0.05);
  color: var(--color-link);
  border: 2px solid var(--color-border);
  font-size: var(--font-xs);
  padding: 10px 16px;
}

.related-topics .service-link:hover {
  background-color: var(--brand-deep);
  color: white;
  border-color: var(--accent-gold);
}

/*-----------------------------------------------------------------------------
** SITEMAP EN DEFINITIES SPECIFIEKE STYLING
**---------------------------------------------------------------------------*/

/* Betere grid styling voor definities secties - minder witruimte */
.definitions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Nog kleinere minimum breedte */
  gap: 12px; /* Minimale gap */
  margin-top: 15px;
}

.definitions-grid > div {
  margin: 0; /* Geen extra marge voor child divs */
  padding: 12px 8px; /* Compactere padding */
}

.definitions-grid h4 {
  margin: 0 0 6px 0;
  font-size: var(--font-sm);
  font-weight: 600;
  text-align: left;
}

.definitions-grid ul {
  margin: 0;
  padding-left: 0;
  text-align: left;
}

.definitions-grid li {
  list-style: none;
  padding: 2px 0 2px 8px; /* Minimale padding - van 10px naar 8px */
  position: relative;
  margin-bottom: 2px;
  line-height: 1.2;
  text-align: left;
}

.definitions-grid li::before {
  content: '\25AA';
  position: absolute;
  left: -2px; /* Bullet buiten de text area */
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-weight: bold;
  font-size: 10px;
  line-height: 1;
}

/*-----------------------------------------------------------------------------
** TAGS classes
**---------------------------------------------------------------------------*/

.tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
} 

.tag {
  padding: 5px 10px; 
  background-color: #f1f1f1; 
  border-radius: 5px; 
  text-decoration: none; 
  color: var(--color-text); 
}

/*-----------------------------------------------------------------------------
** ARTICLE LINK classes
**---------------------------------------------------------------------------*/

.articlelink {
  color: var(--color-primary);
  font-size: var(--font-xs);
}

a.articlelink { color: var(--color-primary); }
a.articlelink:visited { color: var(--color-primary); }
a.articlelink:hover { color: var(--color-accent); }
a.articlelink:active { color: var(--color-primary); }

.articletext {
  color: var(--color-text);
  font-size: var(--font-xs);
  line-height: 1.5em;
}

/*-----------------------------------------------------------------------------
** FOOTER CLASSES
**---------------------------------------------------------------------------*/

/* Moderne footer styling - COMPACT */
.footer {
  max-width: 728px;
  margin: 20px auto 10px auto;
  text-align: center;
  padding: 10px 12px;
  background: var(--glass-bg);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 11, 51, 0.08);
  border-top: 3px solid var(--accent-gold);
  border: 1px solid var(--color-border);
  font-size: 14px;  
  font-weight: normal;
  font-family: Arial, sans-serif;
  line-height: 1.3;
}

.footer a.footerlink {
  color: var(--color-text);
  text-decoration: none;
  padding: 3px 6px;
  margin: 1px 2px;
  border-radius: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
}

.footer a.footerlink:hover {
  background-color: var(--brand-deep);
  color: white;
  transform: translateY(-1px);
}

.footer a.footerlink:visited {
  color: var(--color-text);
}

.footer a.footerlink:active {
  color: var(--color-text);
}

.footer .footertextgrey {
  color: var(--color-muted);
  font-family: Arial, sans-serif;
  font-size: var(--font-sm); /* Consistente grootte */
  font-weight: normal;
  text-decoration: none;
  font-style: normal;
  line-height: 1.6em;
}

.footer-copyright {
  font-size: var(--font-xs);
  color: var(--color-muted);
  border-top: 1px solid #e9ecef;
  padding-top: 8px;
  margin-top: 8px;
  line-height: 1.3;
}

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

/* Oude footer link styling - gebruikt als fallback */
.footer .footerlink:not(:hover) {
  background: transparent;
  transform: none;
}

/*-----------------------------------------------------------------------------
** UTILITY CLASSES
**---------------------------------------------------------------------------*/

/* Utility classes voor snelle styling */
.shadow-light {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.shadow-heavy {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.rounded-small {
  border-radius: 6px;
}

.rounded-medium {
  border-radius: 12px;
}

.rounded-large {
  border-radius: 20px;
}

.gradient-primary {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-royal) 100%);
}

.gradient-light {
  background: var(--glass-bg);
}

.gradient-white {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

/* Moderne spacing utilities */
.mt-modern { margin-top: 25px; }
.mb-modern { margin-bottom: 25px; }
.p-modern { padding: 25px; }

/* Text styling updates */
.text-modern {
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 400;
}

.text-muted {
  color: #6c757d;
}

.text-primary {
  color: var(--brand-deep);
}

/* Hover effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Animation classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/*-----------------------------------------------------------------------------
** RESPONSIVE DESIGN
**---------------------------------------------------------------------------*/

@media (max-width: 768px) {
  body {
    padding: 8px;
    margin: 8px;
  }
  
  #wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 5px;
  }
  
  .centered-table {
    width: 100%; 
    max-width: 100%;
  }
  
  /* Alle tabellen responsive maken */
  table[width="728"], 
  table[width="724"] {
    width: 100%; 
    max-width: 100%;
  }
  
  /* Header tabel en cellen responsive */
  table[width="728"] td,
  table[width="724"] td {
    width: 100%;
    max-width: 100%;
  }
  
  /* Images responsive maken - inclusief logo */
  img[width="728"],
  table[width="728"] img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .modern-card,
  .gray-background,
  .heights-box,
  .related-topics {
    margin: 15px -10px;
    border-radius: 8px;
    padding: 20px 15px;
  }
  
  /* Info-box responsive styling */
  .info-box .modern-button,
  .info-box .modern-button-secondary,
  .info-box .modern-button-outline {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
  
   .modern-button,
  .modern-button-secondary,
  .modern-button-outline {
    display: block;
    text-align: center;
    margin: 10px 0;
  }
  
  .footer {
    margin: 15px auto 8px auto;
    padding: 10px 8px;
    font-size: 14px;
    border-radius: 8px 8px 0 0;
    line-height: 1.3;
  }
  
  .footer a.footerlink {
    font-size: 13px;
    padding: 3px 5px;
    margin: 1px;
    display: inline-block;
  }
  
  .footer .footertextgrey {
    font-size: 13px;
  }
  
  .footer-copyright {
    font-size: 11px;
    line-height: 1.3;
    padding-top: 6px;
    margin-top: 6px;
  }
  
  .main-navigation {
    padding: 6px 8px;
  }
  
  .nav-link {
    padding: 5px 10px;
    margin: 2px 2px;
    font-size: 14px;
    display: inline-block;
  }
  
  .nav-separator {
    display: none;
  }
  
  .service-links {
    justify-content: center;
    gap: 8px;
  }
  
  .service-link {
    padding: 10px 16px;
    font-size: var(--font-xs);
  }
  
  .service-card {
    padding: 15px;
  }
  
  .service-card h3 {
    font-size: var(--font-sm);
  }
  
  .service-card p {
    font-size: var(--font-xs);
  }
  
  .contact-cta-buttons .modern-button {
    display: block;
    text-align: center;
    margin: 10px 0;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-form-section {
    padding: 20px 15px;
    margin: 20px -15px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: var(--font-sm); /* Prevents zoom on iOS */
  }
  
  .submit-button {
    width: 100%;
    padding: 15px 20px;
  }
}

@media (max-width: 600px) {
  body {
    padding: 5px;
    margin: 5px;
    font-size: var(--font-md);
  }
  
  .main-navigation {
    padding: 6px 5px;
  }
  
  .nav-link {
    display: inline-block;
    margin: 2px 1px;
    text-align: center;
    font-size: 13px;
    padding: 5px 8px;
  }
  
  /* Extra ruimte aan zijkanten vermijden */
  .modern-card,
  .gray-background,
  .heights-box,
  .info-box,
  .success-box,
  .warning-box,
  .highlight-box,
  .related-topics {
    margin-left: -5px;
    margin-right: -5px;
    padding: 15px 10px;
  }
  
  /* Footer compact voor mobiel */
  .footer {
    margin: 12px 0 5px 0;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.3;
  }
  
  .footer a.footerlink {
    font-size: 12px;
    padding: 2px 4px;
    margin: 1px 0;
    display: inline-block;
  }
  
  .footer-copyright {
    font-size: 10px;
    padding-top: 6px;
    margin-top: 6px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  body {
    padding: 2px;
    margin: 2px;
    font-size: var(--font-sm);
  }
  
  .main-navigation {
    padding: 5px 3px;
  }
  
  .nav-link {
    display: inline-block;
    margin: 1px 1px;
    text-align: center;
    font-size: 12px;
    padding: 4px 6px;
  }
  
  /* Zeer kleine schermen - maximale ruimte benutten */
  .modern-card,
  .gray-background,
  .heights-box,
  .info-box,
  .success-box,
  .warning-box,
  .highlight-box,
  .related-topics {
    margin-left: -2px;
    margin-right: -2px;
    padding: 12px 8px;
    border-radius: 6px;
  }
  
  /* Footer zeer compact voor kleine mobiel */
  .footer {
    margin: 8px 0 0 0;
    padding: 8px 4px;
    font-size: 11px;
    line-height: 1.3;
    border-radius: 0;
  }
  
  .footer a.footerlink {
    font-size: 11px;
    padding: 2px 3px;
    margin: 0;
  }
  
  .footer-copyright {
    font-size: 9px;
    padding-top: 5px;
    margin-top: 5px;
    line-height: 1.3;
  }
}

/*-----------------------------------------------------------------------------
** WOORDENBOEK / DICTIONARY LAYOUT VERBETERINGEN
**---------------------------------------------------------------------------*/

/* Verbeterde twee-koloms layout voor woordenboek pagina's */
.dictionary-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 20px 0;
  align-items: start;
}

.dictionary-column {
  background: var(--glass-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--brand-deep);
}

/* Dictionary items styling */
.dictionary-item {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.dictionary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.dictionary-term {
  display: block;
  color: var(--brand-deep);
  font-weight: 600;
  font-size: var(--font-md);
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.dictionary-term:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* Voor bestaande tabel-gebaseerde layout - verbeterde uitlijning */
.dictionary-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin: 20px 0;
}

.dictionary-table td {
  vertical-align: top;
  padding: 20px 25px;
  width: 50%;
  background: var(--glass-bg);
  border-right: 2px solid var(--color-border);
}

.dictionary-table td:last-child {
  border-right: none;
}

/* Dictionary links binnen tabellen */
.dictionary-table .entrylink {
  display: block;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--font-md);
  line-height: 1.4;
  color: var(--brand-deep);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dictionary-table .entrylink:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.dictionary-table .entrylink:hover {
  color: var(--accent-gold);
  background-color: rgba(0, 11, 51, 0.03);
  padding-left: 10px;
  border-radius: 5px;
}

/* Betere balans tussen kolommen */
.dictionary-table td:nth-child(1) {
  padding-left: 30px;
}

.dictionary-table td:nth-child(2) {
  padding-left: 25px;
  padding-right: 30px;
}

/* Letter headers in woordenboek */
.dictionary-letter-header {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-royal) 100%);
  color: white;
  padding: 15px 30px;
  font-size: var(--font-lg);
  font-weight: bold;
  text-align: center;
  border-radius: 12px 12px 0 0;
  margin-top: 30px;
  margin-bottom: 0;
  box-shadow: var(--card-shadow);
}

/* Alphabet navigation */
.alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
  padding: 20px;
  background: var(--glass-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-border);
}

.alphabet-nav a {
  display: inline-block;
  padding: 8px 12px;
  background: white;
  color: var(--brand-deep);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: var(--font-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  min-width: 35px;
  text-align: center;
}

.alphabet-nav a:hover {
  background-color: var(--brand-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
  border-color: var(--accent-gold);
}

.alphabet-nav a.active {
  background-color: var(--brand-deep);
  color: white;
  font-weight: 700;
  border-color: var(--accent-gold);
}

/*-----------------------------------------------------------------------------
** RESPONSIVE DESIGN VOOR WOORDENBOEK
**---------------------------------------------------------------------------*/

@media (max-width: 768px) {
  .dictionary-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .dictionary-table td {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #e9ecef;
    padding: 15px 20px;
  }
  
  .dictionary-table td:last-child {
    border-bottom: none;
  }
  
  .dictionary-table td:nth-child(1),
  .dictionary-table td:nth-child(2) {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .alphabet-nav {
    gap: 5px;
    padding: 15px;
  }
  
  .alphabet-nav a {
    padding: 6px 10px;
    font-size: var(--font-xs);
    min-width: 30px;
  }
  
  .dictionary-letter-header {
    padding: 12px 20px;
    font-size: var(--font-md);
  }
}

@media (max-width: 480px) {
  .dictionary-table .entrylink {
    font-size: var(--font-sm);
    padding: 6px 0;
    margin-bottom: 8px;
  }
  
  .dictionary-table td {
    padding: 12px 15px;
  }
  
  .alphabet-nav a {
    padding: 5px 8px;
    font-size: var(--font-xs);
    min-width: 28px;
  }
}

/*-----------------------------------------------------------------------------
** TRAINING SECTION STYLING
**---------------------------------------------------------------------------*/

/* Training sectie moet altijd op een witte achtergrond en het logo moet rechts */
.training-section {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e6ed;
}

.training-section img {
  float: right;
  margin: 0 0 20px 20px;
  border-radius: 8px;
}

.training-section h2 {
  color: var(--color-text);
  margin: 0 0 15px 0;
}

.training-section p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.training-section::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive styling voor training section */
@media (max-width: 768px) {
  .training-section {
    padding: 20px 15px;
  }
  
  .training-section img {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .training-section {
    padding: 15px 10px;
  }
  
  .training-section img {
    max-width: 80px;
  }
}


/*-----------------------------------------------------------------------------
** CTA BUTTONS STYLING - GECENTREERD
**---------------------------------------------------------------------------*/

/* CTA buttons container - altijd gecentreerd */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Voor info-box en andere containers - zorg dat CTA altijd gecentreerd is */
.info-box .cta-buttons,
.modern-card .cta-buttons,
.success-box .cta-buttons,
.warning-box .cta-buttons,
.heights-box .cta-buttons,
.highlight-box .cta-buttons {
  justify-content: center;
  text-align: center;
}

/* Moderniseer text-center class voor consistentie */
.text-center {
  text-align: center;
}

.text-center .cta-buttons {
  justify-content: center;
}

/* Responsive design voor CTA buttons */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-buttons .modern-button,
  .cta-buttons .modern-button-outline {
    width: 100%;
    max-width: 250px;
    text-align: center;
    display: block;
  }
}

/* Verwijder oude margin-right styling die niet meer nodig is */
.info-box .modern-button + .modern-button-outline {
  margin-left: 0;
}

/**************************************************************************************
** END - CSS definition for Heights.nl - Copyright 2006-2026 - Netherlands
***************************************************************************************/ 