

.sidebar {
  margin: 0;
  padding: 0;
  width: 50px;
  background-color: #f1f1f1;
  position: fixed;
  height: 100%;
  overflow: auto;
  
  display: flex;
  flex-direction: column;
}


.sidebar a {
  display: block;
  color: #606060;
  padding: 16px;
  text-decoration: none;
}


.sidebar a.active {
  background-color: var(--outgoing-chat-bg); /*#04AA6D;*/
  color: var(--placeholder-color); /*white;*/
}

.sidebar a:hover:not(.active) {
  background-color: var(--outgoing-chat-bg);
  color: var(--text-color); /*white;*/
}

div.content {
  margin-left: 80px;
  padding: 1px 16px;
  height: 100vh;
}



@media screen and (max-width: 600px) {

  .sidebar, .top-align, .bottom-align  {
    width: 100%;
    height: auto;
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    
    
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  div.content {margin-left: 0;}
  
  .typing-container {
    width: 100%;
    padding-right: 50px;
  }

  .default-text{
      padding-right: 0px;
  }
  
}

.top-align {
    justify-content: flex-start;
}

.bottom-align {
    justify-content: flex-end;
    margin-top: auto;
}


