<style>

.sidebar ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}


.scrollable-view {
      max-height: 200px;
      overflow-y: auto;
      transition: max-height 0.3s ease;
    }
    .scrollable-view.collapsed {
      max-height: 0;
}

.sidebar {
  background-color: #f5f5f5;
  width: 200px;
  padding: 20px;
  position: relative;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px; /* Add margin at the bottom */
}

.sidebar ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.sidebar ul li i {
  color: #2196f3;
}

.image-li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px; /* Adjust the positioning as per your needs */
  left: 20px; /* Adjust the positioning as per your needs */
  z-index: 999; /* Ensure the image stays on top of other elements */
}

.image-li img {
  width: 100px;
  height: 100px;
}



.container {
  display: flex;
}

#contentArea h1 {
 color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Apply a text shadow for better readability */
}

.sidebar {
  background-color: #f5f5f5;
  width: 200px;

  padding: 20px;
}

.sidebar:first-child {
  margin-right: 20px;
}

.sidebar:last-child {
  margin-left: 20px;
}
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #2196f3;
  padding: 20px;
  color: #fff;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

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

.container {
  display: flex;
}

aside {
  background-color: #f5f5f5;
  width: 200px;
  padding: 20px;
}

aside ul {
  list-style: none;
  padding: 0;
}

aside ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

aside ul li i {
  color: #2196f3;
}

main {
  flex: 1;
  padding: 20px;
}

h1 {
  color: #333;
}

.primary-button {
  background-color: #2196f3;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

footer {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.collapsed {
  max-height: 0;
}
.collapsed {
      display: none;
    }

</style>