/* Estilos para Menções no Trix */

.trix-mention {
  background-color: rgba(0, 123, 255, 0.1);
  border-radius: 3px;
  padding: 0 3px;
  color: #007bff;
  font-weight: 500;
  white-space: nowrap;
}

.trix-mention-avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.trix-mentions-dropdown {
  position: absolute;
  display: none;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 9999;
}

.trix-mentions-dropdown.active {
  display: block;
}

.trix-mentions-dropdown-item {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.trix-mentions-dropdown-item:hover, 
.trix-mentions-dropdown-item.selected {
  background-color: #f5f5f5;
}

.trix-mentions-dropdown-item-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
}

.trix-mentions-dropdown-item-info {
  display: flex;
  flex-direction: column;
}

.trix-mentions-dropdown-item-name {
  font-weight: 500;
}

.trix-mentions-dropdown-item-username {
  font-size: 0.8em;
  color: #666;
} 