.dash-sidebar {
  background-color: lightgreen;
  height: 100vh;
  /* float: left;
    text-align: left; */
  max-width: fit-content;
  clear: both;
  margin-left: -570px;
  padding: 10px;
  border-radius: 4px;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.alignRight {
  align-items: center;
  justify-content: center;
}

.alignCenter {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.icon {
  color: #009c9e;
}

.main {
  min-width: 70% !important;
  justify-content: flex-start;
}

.messenger {
  display: flex;
  width: 100%;
  height: 100%- 325px;
  flex-grow: 1;
  background: white;
  overflow-x: hidden;
}

.container {
  width: 100%;
  height: 100%- 325px;
  padding: 10px;
  transition: max-width 0.3s ease;
}

.scrollable {
  position: relative;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.sidebar {
  background: white;
  grid-row-start: 1;
  grid-row-end: span 3;
}

.content {
  width: 100%;
  background: white;
  grid-row-start: 1;
  grid-row-end: span 3;
}

.footer {
  grid-column-start: 2;
  background: white;
}

