/* Direct styling for message selection - no pseudo-elements */

/* Apply styling directly to the selected message elements */
.message.selected {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
  outline: 4px solid #007bff;
  outline-offset: 4px;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

/* Special types of messages */
.message[data-type=S].selected {
  border-color: #666;
}
