/* Style for messages and timestamps */
.message {
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  max-width: 70%;
}

.timestamp {
  font-size: 12px;
  color: #999;
}

.messages-container {
  height: 240px;
  overflow-y: scroll;
}

/* Outgoing message from User 1 */
.outgoing {
  background-color: #7ED8FA;
  color: #fff;
  text-align: right;
  margin-left: auto;
}

/* Incoming message from User 2 */
.incoming {
  background-color: #e9ecef;
  color: #333;
  text-align: left;
  margin-right: auto;
}

.hover-pointer {
  cursor: pointer;
}

.badge.badge-danger {
  font-size: 8px;
  /* Adjust the size of the dot */
  width: 10px;
  /* Adjust width for a circular dot */
  height: 10px;
  /* Adjust height for a circular dot */
  padding: 0;
  /* Remove padding */
  border-radius: 50%;
  /* Make it a circle */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}