/* Algemene stijlen */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

/* Topbar */
.topbar {
  background-color: #333;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

/* Layout */
.container {
  display: flex;
  min-height: calc(100vh - 100px);
}

.content {
  flex: 1;
  padding: 20px;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  margin-top: 20px;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 14px;
}

.navbar a:hover {
  background-color: #575757;
  border-radius: 5px;
}

/* Hamburger icoon */
.navbar .icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* MOBILE MENU */
@media screen and (max-width: 768px) {

  .navbar a { display: none; }

  .navbar { width: 100%; justify-content: flex-end; }

  .navbar .icon { display: block; }

  .navbar.responsive {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #333;
    width: 220px;
    padding: 10px;
    z-index: 1000;
    border-radius: 8px;
  }

  .navbar.responsive a {
    display: block !important;
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .navbar.responsive a:last-child { border-bottom: none; }

  .container { flex-direction: column; }
}