.strong-text {
    font-weight: bold !important;
}

.chat-message textarea.form-control {
  flex: 1; /* textarea vil fylde det tilgængelige rum */
  margin: 0; /* Fjern margin, hvis nogen */
  height: auto; /* Tillad at højden justeres automatisk */
  resize: none; /* Fjern brugerens mulighed for at ændre størrelsen, hvis ønsket */
}

/* Container styles */
.chat-message .input-container {
  display: flex;
  align-items: stretch; /* Opdateret fra center til stretch for at fylde højden */
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0;
  background-color: #fff;
  max-width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Fjern border på hover */
button {
  border: none !important;
}

/* Input icon styles */
.chat-message .input-icon {
  background-color: #e9ecef;
  border-radius: 4px 0 0 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  border-right: 1px solid #ccc;
}

/* Input field styles */
.chat-message .form-control {
  display: flex; /* Gør det muligt at bruge flexbox egenskaber */
  align-items: center; /* Centrerer teksten vertikalt */
  border: none;
  outline: none;
  padding-top: 16px;
  padding-left: 16px;
  font-size: 16px;
  width: 100%;
  border-radius: 0 4px 4px 0;
}

/* Input group text and FontAwesome icon styles */
.chat-message .input-group-text {
  background: transparent;
  border: none;
}

.chat-message .fa {
  color: #495057;
  font-size: 1.2em;
}

/* Remove focus outline on input */
.chat-message .form-control:focus {
  box-shadow: none;
}

/* Chat header container styles */
.chat-header-container {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
  font-style: normal;
}

/* Chat history styles */
.chat-history {
  height: 500px;
  overflow-y: auto;
}

/* Chat message list item styles */
.chat .chat-history ul li {
  list-style: none;
  margin-bottom: 30px;
}

/* Message data time styles */
.chat .chat-history .message-data-time {
  color: #434651;
  text-align: right;
  padding-left: 6px;
}

.chat .chat-history .message-data.text-left {
  text-align: right;
}

/* Message styles */
.chat .chat-history .message {
  color: #444;
  padding: 20px 20px;
  line-height: 26px;
  font-size: 16px;
  border-radius: 7px;
  display: inline-block;
  position: relative;
}

/* My message styles */
.chat .chat-history .my-message {
  background: #efefef;
}

/* Other message styles */
.chat .chat-history .other-message {
  background: #e8f1f3;
  text-align: left;
}

/* Styling for other message arrow */
.chat .chat-history .other-message:after {
  border-bottom-color: #e8f1f3;
}

/* Float styles */
.float-right {
  float: right;
}

.float-left {
  float: left;
}

/* Form control styles */
.form-control {
  width: 100%;
}

/* Clearfix styles */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}