body {
  font-family: sans-serif;
  margin: 40px;
  background: #f8f8f8;
}
header {
  background: #333;
  color: white;
  padding: 10px;
  border-radius: 10px;
}
nav a {
  color: white;
  margin-right: 10px;
  text-decoration: none;
}
main {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #2c3e50, #4ca1af);
  padding: 12px 25px;
  color: white;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255,255,255,0.4);
}

.nav-links a.logout {
  background: #e74c3c;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-links a.logout:hover {
  background: #c0392b;
}

/* === PAGINA-INHOUD === */
.content {
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}

/* === FOOTER === */
.footer {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  margin: 40px 0 10px;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-align: center;
  padding: 15px;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card span {
  display: block;
  font-weight: 600;
}

.status {
  display: block;
  margin-top: 8px;
  font-weight: 600;
}


