.tribute-container {
	position: absolute;
	top: 0;
	left: 0;
	height: auto;
	max-height: 300px;
	max-width: 300px;
	min-width: 300px;
	overflow: auto;
	display: block;
	z-index: 999999;
	border: 1px solid #c7c7c7;
	padding: 2px;
    border: 1px solid #E9ECEF;
    background:  #FFFFFF;
    box-shadow: 0px 2px 6px 0px rgba(2, 2, 2, 0.12);
}

.tribute-container ul {
	margin: 0;
	margin-top: 2px;
	padding: 0;
	list-style: none;
	background: rgb(255, 255, 255);
}

.tribute-container li {
	padding: 5px 5px;
	cursor: pointer;
}

.tribute-container li.highlight, .tribute-container li:hover {
	border-radius: 3px;
	background: var(--color-surface-hovered, #F3F5F7);
}

.tribute-container li.no-match {
	cursor: default;
}

.tribute-container .menu-highlighted {
	font-weight: bold;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #5D6873;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: small;
    margin-right: 8px;
}

.initials {
	color: rgb(255, 255, 255); /* Dark gray text */
}

.tribute-container li span {
	overflow: hidden;
    color: #212529;
    font-variant-numeric: lining-nums tabular-nums;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
/* Show more css */

.comment-box {
  position: relative;
  font-family: sans-serif;
}

.comment-text {
	font-family: Inter;
	font-weight: 400;
	font-size: 13px;
	line-height: 150%;
	letter-spacing: 0%;
	vertical-align: middle;
 	transition: max-height 0.2s ease;
  	padding: 8px;
  	max-height: 100px; /* Limit height */
  	overflow: hidden;
}

.comment-text.expanded {
 overflow: visible;
 transition: max-height 0.2s ease;
}
.fade-out {
  position: absolute;
  bottom: 1rem; /* just above the button */
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
  pointer-events: none;
  opacity: 1;
}

.show-more{
  background: none;
  border: none;
  color: #0078d4;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.comment-text.expanded .fade-out {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.htmlForumNotesByCurrentUser{
	background: var(--primary-000, #FFF);
} 

.textblock-grid-container{
	overflow-y: auto;
}

.comment-text p {
  word-wrap: break-word;      /* older syntax */
  overflow-wrap: break-word;  /* modern, recommended */
  word-break: break-word;     /* works for non-spaced long strings */
  white-space: normal;        /* ensures text wraps normally */
}
