* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    background-image: url('images/slide1.png');
    background-size: cover;
    background-position: center;
    transition: background-position 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10rem;
    border-radius: 10px;
    background: rgba(0,0,0,0.5);

    /* Correct gebruik van --bg */
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
}

.slide:hover {
    transform: scale(1.015);
    transition: transform 0.3s ease;
}

.clean-topbar {
    width: 95%;
    margin: 25px auto 0 auto;
    padding: 14px 25px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 16px rgba(0,0,0,0.25);
}

.tb-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tb-logo {
    height: 48px;
}

.tb-title {
    font-size: 26px;
    color: white;
    font-weight: bold;
    margin: 0;
}

.tb-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.tb-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tb-link img {
    height: 36px;
}

.profile-box {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

#profileAvatar {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
}

#profileName {
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.profile-dropdown {
    position: absolute;
    right: 0;
    top: 55px;
    background: rgba(0,0,0,0.6);
    padding: 10px 15px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.profile-dropdown a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.profile-box:hover .profile-dropdown {
    display: flex;
}


.content {
    background: rgba(0,0,0,0);
    padding: 40px 50px;
    border-radius: 20px;
    color: white;
    max-width: 350px;
    backdrop-filter: blur(8px);
}

.logo {
    width: 70px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #00ff4c;
    color: #000;
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: .2s;
}

.btn:hover {
    transform: scale(1.08);
    background: #00ff80;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dots div {
    width: 14px;
    height: 14px;
    background: #666;
    border-radius: 50%;
    transition: .3s;
    cursor: pointer;
}

.dots .active {
    background: #00ff4c;
    transform: scale(1.3);
}

.logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-container img {
      height: 50px;
    }

    .main-scrnshot img {
      height: 500px;
    }
    .container {
      display: flex;
    }

.logo-container {
  margin-right: auto;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-container img {
      height: 75px;
      width: auto;
    }
    body {
      display: flex;
      flex-direction: column;
      margin: 0;
      font-family: sans-serif;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #1a1a1a;
      color: white;
    }
    aside {
      width: 220px;
      background-color: #f0f0f0;
      padding: 1rem;
    }
    main {
      flex: 1;
      padding: 2rem;
    }
    nav ul {
      list-style: none;
      padding: 0;
    }
    nav li {
      margin-bottom: 0.5rem;
    }
    nav a {
      text-decoration: none;
      color: #333;
    }
    iframe {
      width: 100%;
      height: 1000px;
      border: none;
      margin-top: 1rem;
    }
    footer {
      background-color: #1a1a1a;
      color: white;
      text-align: center;
      padding: 1rem;
    }

/* Header en nav volledig breed */
header, nav, footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 10px;
  flex-shrink: 0;
}

/* Navigatiebalk horizontaal */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

/* De "container" voor sidebar + main content */
.container {
  display: flex;
  flex: 1; /* vult de resterende hoogte */
  min-height: 0; /* voorkomt overflow in sommige browsers */
}

/* Sidebar links met vaste breedte */
aside {
  flex: 0 0 250px; /* vaste breedte van 250px */
  background-color: #f0f0f0;
  padding: 20px;
  box-sizing: border-box;
  border-right: 2px solid #ccc;
  overflow-y: auto; /* als inhoud te lang wordt */
}

/* Main content vult rest */
main {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* Footer onderaan */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 10px;
  flex-shrink: 0;
}

/* Hover effect voor afbeeldingen, optioneel */
img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Tabel styling */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

/* Kleine schermen: sidebar onder main, navbar horizontaal */
@media screen and (max-width: 400px) {
  .container {
    flex-direction: column;
  }
  aside {
    flex: none;
    width: 100%;
    border-right: none;
    border-top: 2px solid #ccc;
  }
  nav ul {
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: row;
  }
  nav ul li {
    margin: 0 8px;
  }
  ul {
  list-style: square;
  padding-left: 1.5rem;
}
ul li {
  margin-bottom: 0.5rem;
}

}
