#threads-panel {
  height: 70vh;
  width: 23vw;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#messages-history-link {
  border-bottom: solid #f5f5f5 1px;
  margin-bottom: 1em;
  padding-bottom: 1em;
}

#selected-thread-container {
  margin-bottom: 1em;
  border-bottom: solid #f5f5f5 1px;
  padding-bottom: 1em;
}

.thread-link {
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 1em;
  margin-top: 5px;
  margin-bottom: 5px;
  color: black;
}

.thread-link-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.unread h4 {
  font-weight: bold;
}

.current-thread {
  background-color: #d9edf7;
}
