.initials-circle {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #6c757d;
  color: white;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 10px;
}

.list-group-message {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  background-color: #f0f2f5;
  border-radius: 10px;
  margin-bottom: 10px;
}

.username {
  color: #333;
  font-weight: 500;
}

.list-group-message .text-muted {
  display: block;
  color: #666;
  font-size: 14px;
  margin-top: 2px;
}

.list-group-message .timestamp {
  margin-left: auto;
  color: #999;
  font-size: 12px;
}

.unread-message {
  font-weight: bold !important;
}

.unread-indicator {
  height: 10px;
  width: 10px;
  background-color: #007bff;
  border-radius: 50%;
  display: inline-block;
}

.chat-message {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.chat-message.left {
  justify-content: flex-start;
}

.message-content {
  max-width: 60%;
  padding: 8px 12px;
  border-radius: 15px;
  color: white;
  font-size: 14px;
}

.message-content.right {
  background-color: #007bff;
}

.message-content.left {
  background-color: #f0f0f0;
  color: black;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 1.5px solid grey;
  margin: auto;
}

.chat-box {
  max-height: 430px;
  min-height: 430px;
  overflow-y: scroll;
  padding-left: 15px;
  padding-right: 15px;
}

.chat-box::-webkit-scrollbar {
  width: 8px;
}

.chat-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.chat-box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.chat-box::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.border-top-white {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.date-separator {
  width: 100%;
  text-align: center;
  margin: 20px 0;
  font-size: 16px;
  color: #666;
}

.selected-message {
  background-color: #dfdfdf;
}
