body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.chats {
  max-width: 400px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.message {

  margin: 2px auto;
  background-color: #fff;
  border-left: 5.8px solid #fff;
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: .5px solid #eee;
  max-height: 70px;



}

.message:hover {
  transition-duration: .3s;
  background-color: #f3f3f3;
  border-left: 5.8px solid #ccc;


  transform: scale(1.0);
}
.message:hover .status-dot  {
  transition-duration: .2s;
  border: 1px rgba(240,240,240,.3)  solid;
  transform: scale(1.3);
}


.message:last-child {
  border-bottom: none;
}

.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.message-content {
  color: #999;
  flex-grow: 1;
}

.chat-caption {
  color: #666;
}

.message-status {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

.status-dot {


  position: fixed;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  
  border: 1.5px rgba(240,240,240,.7)  solid;
  background-color: green;
  
  margin-left: 32px;
  margin-top: 42px;
}

.notification {
  background-color: rgba(208, 109, 119, 0.9);

  color: #fff;
  padding: 5px 9px;

  border-radius: 12px;
  font-size: 12px;
  text-align: center;
  margin-right: 1px;
  position: relative;


  height: 15px;

}