main {
  padding: 30px;
  color: black;
  background-color: rgb(238, 238, 238);
  min-height: 100vh;
}

.documentatie-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(47, 98, 209, 0.2);
}

.documentatie-header i {
  font-size: 1.5em;
  margin-right: 12px;
  /* color: rgb(47, 98, 209); */
  color: rgb(79, 79, 79);
}

.documentatie-header h2 {
  font-size: 1.5em;
  margin: 0;
  /* background: linear-gradient(
    90deg,
    rgb(47, 98, 209) 0%,
    rgb(121, 204, 231) 100%
  ); */
  color: rgb(79, 79, 79);
  -webkit-background-clip: text;
  background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.file-structure {
  margin-left: 10px;
}

.folder-item {
  margin: 8px 0;
  user-select: none;
}

.folder-item > i {
  color: rgb(255, 193, 7);
  margin-right: 8px;
  font-size: 1.2em;
}

.folder-name {
  font-weight: 600;
  font-size: 1.1em;
  color: rgb(47, 98, 209);
}

.folder-contents {
  margin-left: 30px;
  margin-top: 8px;
  padding-left: 15px;
  border-left: 2px solid rgba(47, 98, 209, 0.15);
}

.folder-item.nested {
  margin: 12px 0;
}

.folder-item.nested > i {
  color: rgb(255, 193, 7);
}

.file-item {
  margin: 10px 0;
  padding: 8px 12px;
  background-color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.file-item:hover {
  background-color: rgba(47, 98, 209, 0.05);
  border-color: rgba(47, 98, 209, 0.2);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fa-brands {
  color: black !important;
  margin-right: 10px;
  font-size: 1.3em;
}

.file-item i.fa-file-word {
  color: rgb(43, 87, 154);
  margin-right: 10px;
  font-size: 1.3em;
}

.file-item i.fa-file-excel,
.file-item i.fa-image {
  color: rgb(33, 115, 70);
  margin-right: 10px;
  font-size: 1.3em;
}

.file-item i.fa-file-pdf {
  color: rgb(255, 0, 0);
  margin-right: 10px;
  font-size: 1.3em;
}

.file-item img {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.file-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: black;
  transition: color 0.2s ease;
}

.file-item a:hover {
  color: rgb(47, 98, 209);
}

.file-name {
  font-weight: 500;
  flex-grow: 1;
}

.file-item a i.fa-external-link-alt {
  color: rgb(47, 98, 209);
  font-size: 0.9em;
  margin-left: 10px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.file-item:hover a i.fa-external-link-alt {
  opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  main {
    padding: 20px 15px;
  }

  .documentatie-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .documentatie-header h2 {
    font-size: 1.3em;
  }

  .documentatie-container {
    width: 100%;
    padding: 20px;
  }

  .folder-contents {
    margin-left: 20px;
  }

  .file-item {
    padding: 10px;
  }

  .file-name {
    font-size: 0.9em;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  main {
    padding: 15px 10px;
  }

  .documentatie-header {
    padding-bottom: 12px;
  }

  .documentatie-header i {
    font-size: 1.3em;
  }

  .documentatie-header h2 {
    font-size: 1.2em;
  }

  .folder-name {
    font-size: 1em;
  }

  .folder-contents {
    margin-left: 15px;
    padding-left: 10px;
  }

  .file-item {
    padding: 8px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .file-item i {
    margin-right: 8px;
  }

  .file-item a {
    width: 100%;
    flex-direction: row;
  }

  .file-name {
    font-size: 0.85em;
  }
}

/* Projectdefinitie */
.Projectdefinitie {
  background-color: rgba(223, 223, 223, 0.773);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  margin: 50px 0 20px;
  padding: 20px;
}

.Projectdefinitie ul {
  margin-left: 30px;
}

.Projectdefinitie li {
  margin: 8px 0;
  font-weight: 300;
}

.Projectdefinitie a {
  color: lightseagreen;
}

.Projectdefinitie ul ul {
  list-style-type: "- ";
}

/* Logo showcase */
.Logo-Showcase {
  background-color: rgba(223, 223, 223, 0.773);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  margin: 50px 0 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.Projectdefinitie iframe {
  width: 100%;
}
