.text-desciption{
  font-size: 14px !important;
}
.names{
  font-size: 12px !important;
  font-weight: bold;
  color: #009444!important;
}
.new-chat-space {
  width: 100%; /* Fixed width */
  height: 750px; /* Fixed height */
  border: 1px solid #009444;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.new-chat-space .new-content-message {
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.new-title-div {
  display: flex;
  align-items: center;
  background-color: #009444;
  color: #FFFFFF;
  padding: 10px;
  width: 100%;
  border-radius: 5px 5px 0 0;
  text-align: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

.new-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  flex-grow: 1;
  color: #FFFFFF;
  text-align: center;
}

.new-title-img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.new-chat-space .new-content-message .new-main {
  height:80%; /* Adjust according to other elements' heights */
  overflow-y: auto;
  margin-bottom: 10px;
  padding-right: 10px;
}

.new-chat-space .new-content-message .new-reciever,
.new-chat-space .new-content-message .new-sender {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.new-chat-space .new-content-message .new-reciever .new-chat,
.new-chat-space .new-content-message .new-sender .new-chat {
  background-color: #F1F0F0;
  border-radius: 8px;
  padding: 10px;
  max-width: 70%;
}

.new-chat-space .new-content-message .new-reciever .new-chat {
  background-color: #009444; /* Green for received messages */
}

.new-chat-space .new-content-message .new-sender .new-chat {
  margin-left: auto;
  background-color: #FFFFFF; /* White for sent messages */
  border: 1px solid #E0E0E0;
}

.new-chat-space .new-content-message .new-chat .new-time {
  font-size: 12px;
  color: black;
  margin-bottom: 5px;
}

.new-chat-space .new-content-message .new-chat .new-message {
  font-size: 14px;
  p{
    color: black;
  }
}

.new-chat-space .new-form {
  display: flex;
  align-items: center;
  padding: 10px;
  height: 30px;
}

.new-chat-space .new-form .new-content {
  border: 1px solid #E0E0E0;
  border-radius: 10px 0px 0px 10px !important;
  height: 35px !important;
  outline: none;
}

.new-chat-space .new-form .new-send {
  width: 24px; /* Fixed width */
  height: 35px; /* Fixed height */
  background-color: #009444;
  border: none;
  border-radius: 0px 10px 10px 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-chat-space .new-form .new-send img {
  width: 40px !important;
  height: 40px !important;
}

.speakers{
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}



/* Add this CSS to your stylesheet or in a <style> tag */
.m-item {
  position: relative;
  display: inline-block;
}

.m-item .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 3px 6px;
  border-radius: 50%;
  background: red;
  color: white;
  font-size: 10px;
}

.green-icon {
  filter: hue-rotate(120deg); /* Change the color of the icon to green */
}
