/* Mentions (@@) - dropdown podpowiedzi użytkowników */
.cmp-mention-dropdown{
    position: absolute;
    z-index: 999999;
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
    padding: 6px;
    max-height: 280px;
    overflow: auto;
}

.cmp-mention-item{
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: left;
}

.cmp-mention-item:hover{
    background: #f5f5f5;
}

.cmp-mention-avatar{
    width: 28px;
    height: 28px;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 28px;
}

.cmp-mention-name{
    font-weight: 900;
    font-size: 13px;
    color: #111;
    line-height: 1.2;
}

a.cmp-mention{
    font-weight: 900;
    text-decoration: none;
}

a.cmp-mention:hover{
    text-decoration: underline;
}
