.crb-author-reviewed-by-page .crb-author,
.crb-author-reviewed-by-page .crb-reviewed-by,
.crb-author-reviewer-block .crb-author,
.crb-author-reviewer-block .crb-reviewed-by {
  font-size: 15px;
  position: relative;
  z-index: 10; /* Ensure it is above other elements */
}

.crb-author-reviewer-block {
  margin: 1em 0;
  font-size: 15px;
}

.crb-editor-preview {
  padding: 15px;
  border: 1px dashed #ddd;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.crb-author-info,
.crb-reviewer-info {
  display: none;
  position: absolute;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 5px;
  z-index: 100;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	white-space: normal; /* Prevent text truncation */
  overflow: visible; /* Ensure content is not hidden */
}

.crb-author-info img,
.crb-reviewer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  float: left;
}

@media screen and (max-width: 480px) {
  .crb-author-info,
  .crb-reviewer-info {
    width: 150px;
  }
}