html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.image-container {
  display: flex;
  justify-content: allign-left; /* Adjusts spacing between image items */
  align-items: flex-end; /* Aligns items to the bottom, ensuring captions are aligned horizontally */
  padding-top: 10px;
  margin-bottom: 60px;
}
.image-item {
  display: flex;
  flex-direction: column; /* Stacks image and caption vertically */
  align-items: center; /* Centers image and caption */
  margin: 0 10px; /* Adds space between each image item */
}
.logo {
  width: 150px; /* Set a larger width for the images */
  height: auto;
}
.caption {
  font-family: Arial, sans-serif;
  font-size: 10px;
  margin-top: 5px;
  /* Ensure the captions have a minimum width to be aligned, adjust as necessary */
  min-width: 150px;
  text-align: center;
}

.container {
  display: flex;
}

.navbar {
  width: 120px;
  background-color: #ffffff;
  padding: 10px;
  font-family: Arial, sans-serif;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
}

.navbar ul li {
  margin-bottom: 10px;
}

.navbar ul li a {
  text-decoration: underline;
  color: #0011ff;
}

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

/* Mobile styles */
@media (max-width: 768px) {
  .image-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    margin-bottom: 20px;
  }
  
  .image-item {
    margin: 0;
  }
  
  .container {
    flex-direction: column;
  }
  
  .navbar {
    width: auto;
    padding: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
  }
  
  .navbar ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
  }
  
  .navbar ul li {
    margin-bottom: 0;
  }
  
  .navbar ul li a {
    font-size: 12px;
    white-space: nowrap;
  }
  
  .content {
    padding: 10px 15px 10px 15px;
    width: calc(100% - 30px);
    margin-top: 0;
    box-sizing: border-box;
  }
  
  /* Ensure nested lists have bullets on mobile */
  details ul ul {
    list-style-type: disc;
    padding-left: 20px;
  }
}

/* Add padding for nested lists in projects */
details ul ul {
  padding-left: 40px;
}
}