:root {
  --od-green: #0b5504;
  --od-green-dark: #073a03;
  --od-bg: #eff4f8;
  --od-text: #282828;
  --od-border: #d6dee5;

  /* Verplaatst uit qa-widget.css: daar stonden ze op :root met de --od-prefix,
     wat suggereerde dat ze globaal waren terwijl ze alleen op die ene route
     bestonden. Nu echt globaal, zodat een volgende pagina ze kan gebruiken. */
  --od-green-soft: #e4efe1;
  --od-green-light: #7bc15b;
  --od-ink: #141414;
}

body {
  background-color: var(--od-bg);
  color: var(--od-text);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 50px;
  background: #fff;
  border-bottom: 1px solid var(--od-border);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--od-green);
}

.site-header__logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.page-title {
  color: var(--od-green);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 28px;
}

/* ---------- Dashboard ---------- */
.container {
  margin: 40px auto 80px;
  padding: 0 50px;
  max-width: 1200px;
}

.bieb-section {
  margin-bottom: 48px;
}

.bieb-section__head {
  border-bottom: 2px solid var(--od-border);
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.bieb-section__head h2 {
  color: var(--od-green);
  font-size: 1.4rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(264px, 1fr));
  gap: 16px;
}

.navBtn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 170px;
  padding: 22px 20px;
  background-color: #fff;
  border: 1px solid var(--od-border);
  border-radius: 14px;
  color: var(--od-text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.navBtn:hover {
  border-color: var(--od-green);
  box-shadow: 0 10px 28px rgba(11, 85, 4, 0.1);
  transform: translateY(-3px);
}

.navBtn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(11, 85, 4, 0.08);
  margin-bottom: 16px;
  transition: background 0.18s ease;
}

.navBtn:hover .navBtn__icon {
  background: rgba(11, 85, 4, 0.13);
}

.navBtn__icon svg {
  width: 24px;
  height: 24px;
}

.navBtn__icon svg path {
  fill: var(--od-green);
}

.navBtn__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1c2a22;
  margin-bottom: 6px;
}

.navBtn__desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #6a7682;
}

.navBtn__ext {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #b2bcc4;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.18s ease;
}

.navBtn:hover .navBtn__ext {
  stroke: var(--od-green);
}

/* ---------- Login ---------- */

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .site-header,
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-header__logo img {
    height: 30px;
  }

  .page-title {
    font-size: 1.6rem;
  }

  /* Naam weglaten op smalle schermen; avatar + uitloggen blijven. */
}
