.sidebar_container{
    height: 100% !important;
    display: flex;
    flex-direction: column; /* Align items vertically */
    justify-content: space-between  !important; 
    align-items: center; /* Center items horizontally */
    align-content: flex-end !important;


}
.logo-container {
    width: 100%;
  display: flex;
  justify-content: center; 
  align-items: flex-start; 
  }
.logo-container img {
        width: 50px;
        height: 50px;
        margin: 0; /* Remove default margin */
        padding: 0; /* Remove default padding */
      }

.sidebar {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping of items */
  justify-content: space-around; /* Spread items evenly */
  width: 40px; /* Sidebar width */
  /* position: fixed;
  top: calc(200px + 70px);
  left: 25px; Sidebar position from left */
  transition: all 0.3s ease;
  margin-top: 10% !important;
  }

  
  @media (max-width: 480px) {
    .sidebar {
      flex-direction: row; 
      justify-content: space-around;
      width: 100%;
      height: auto;
      top: 0;
      left: 0;
    }

  .logo-container img {
    width: 30px; 
    height: 30px;
  }
  }
  